From cb61b60d4517e811aa162f8091e0b54d69f7e46b Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 11 Jan 2024 20:10:27 -0600 Subject: [PATCH 01/13] Remove no-booster specific logic from tests --- src/tests/integration/test_foundry_prove.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/tests/integration/test_foundry_prove.py b/src/tests/integration/test_foundry_prove.py index eb88d799a..f9451584a 100644 --- a/src/tests/integration/test_foundry_prove.py +++ b/src/tests/integration/test_foundry_prove.py @@ -157,7 +157,7 @@ def test_foundry_prove( # Then assert_pass(test_id, single(prove_res)) - if test_id not in SHOW_TESTS or not no_use_booster: + if test_id not in SHOW_TESTS: return # And when @@ -206,7 +206,7 @@ def test_foundry_fail( # Then assert_fail(test_id, single(prove_res)) - if test_id not in SHOW_TESTS or not no_use_booster: + if test_id not in SHOW_TESTS: return # And when @@ -336,9 +336,6 @@ def test_foundry_auto_abstraction( ), ) - if not no_use_booster: - return - show_res = foundry_show( foundry, test=test_id, From 1bc00e38cf88447f303c14d4e239966dc5959ad4 Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 12 Jan 2024 02:11:08 +0000 Subject: [PATCH 02/13] Set Version: 0.1.110 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 94e74b8ef..b6e5c2adf 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.109 +0.1.110 diff --git a/pyproject.toml b/pyproject.toml index 2178ab58a..a8d0c1788 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.109" +version = "0.1.110" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index 274a6c0ef..1fa5b7f4f 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.109' +VERSION: Final = '0.1.110' From 41509848c604d29b32271ed7053577907d9fe825 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Fri, 12 Jan 2024 15:23:23 -0600 Subject: [PATCH 03/13] Fix references to IntTypeTest.test_uint --- .../integration/test-data/foundry-prove-all | 20 +++++++++---------- .../integration/test-data/foundry-prove-skip | 18 ++++++++--------- .../test-data/foundry-prove-skip-legacy | 18 ++++++++--------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/tests/integration/test-data/foundry-prove-all b/src/tests/integration/test-data/foundry-prove-all index acd00445c..2e9a43215 100644 --- a/src/tests/integration/test-data/foundry-prove-all +++ b/src/tests/integration/test-data/foundry-prove-all @@ -285,13 +285,13 @@ UintTypeTest.test_uint88_fail(uint88) UintTypeTest.test_uint8_fail(uint8) UintTypeTest.test_uint96(uint96) UintTypeTest.test_uint96_fail(uint96) -IntTypeTest.testFail_uint128(uint128) -IntTypeTest.testFail_uint256(uint256) -IntTypeTest.testFail_uint64(uint64) -IntTypeTest.test_uint128(uint128) -IntTypeTest.test_uint128_fail(uint128) -IntTypeTest.test_uint256(uint256) -IntTypeTest.test_uint256_fail(uint256) -IntTypeTest.test_uint64(uint64) -IntTypeTest.test_uint64_fail(uint64) -StructTypeTest.test_vars((uint8,uint32,bytes32)) \ No newline at end of file +IntTypeTest.testFail_int128(uint128) +IntTypeTest.testFail_int256(uint256) +IntTypeTest.testFail_int64(uint64) +IntTypeTest.test_int128(uint128) +IntTypeTest.test_int128_fail(uint128) +IntTypeTest.test_int256(uint256) +IntTypeTest.test_int256_fail(uint256) +IntTypeTest.test_int64(uint64) +IntTypeTest.test_int64_fail(uint64) +StructTypeTest.test_vars((uint8,uint32,bytes32)) diff --git a/src/tests/integration/test-data/foundry-prove-skip b/src/tests/integration/test-data/foundry-prove-skip index b7246b03d..0cf3e7d51 100644 --- a/src/tests/integration/test-data/foundry-prove-skip +++ b/src/tests/integration/test-data/foundry-prove-skip @@ -210,12 +210,12 @@ UintTypeTest.test_uint88_fail(uint88) UintTypeTest.test_uint8_fail(uint8) UintTypeTest.test_uint96(uint96) UintTypeTest.test_uint96_fail(uint96) -IntTypeTest.testFail_uint128(uint128) -IntTypeTest.testFail_uint256(uint256) -IntTypeTest.testFail_uint64(uint64) -IntTypeTest.test_uint128(uint128) -IntTypeTest.test_uint128_fail(uint128) -IntTypeTest.test_uint256(uint256) -IntTypeTest.test_uint256_fail(uint256) -IntTypeTest.test_uint64(uint64) -IntTypeTest.test_uint64_fail(uint64) +IntTypeTest.testFail_int128(uint128) +IntTypeTest.testFail_int256(uint256) +IntTypeTest.testFail_int64(uint64) +IntTypeTest.test_int128(uint128) +IntTypeTest.test_int128_fail(uint128) +IntTypeTest.test_int256(uint256) +IntTypeTest.test_int256_fail(uint256) +IntTypeTest.test_int64(uint64) +IntTypeTest.test_int64_fail(uint64) diff --git a/src/tests/integration/test-data/foundry-prove-skip-legacy b/src/tests/integration/test-data/foundry-prove-skip-legacy index 4f5b048ea..73e98cdb3 100644 --- a/src/tests/integration/test-data/foundry-prove-skip-legacy +++ b/src/tests/integration/test-data/foundry-prove-skip-legacy @@ -99,15 +99,15 @@ ForkTest.testRPCUrlRevert() GasTest.testInfiniteGas() GetCodeTest.testGetCode() InitCodeTest.test_init() -IntTypeTest.testFail_uint128(uint128) -IntTypeTest.testFail_uint256(uint256) -IntTypeTest.testFail_uint64(uint64) -IntTypeTest.test_uint128_fail(uint128) -IntTypeTest.test_uint128(uint128) -IntTypeTest.test_uint256_fail(uint256) -IntTypeTest.test_uint256(uint256) -IntTypeTest.test_uint64_fail(uint64) -IntTypeTest.test_uint64(uint64) +IntTypeTest.testFail_int128(uint128) +IntTypeTest.testFail_int256(uint256) +IntTypeTest.testFail_int64(uint64) +IntTypeTest.test_int128_fail(uint128) +IntTypeTest.test_int128(uint128) +IntTypeTest.test_int256_fail(uint256) +IntTypeTest.test_int256(uint256) +IntTypeTest.test_int64_fail(uint64) +IntTypeTest.test_int64(uint64) LoopsTest.sum_N(uint256) LoopsTest.testIsNotPrime(uint256) LoopsTest.testIsPrimeBroken(uint256,uint256) From 235b94708222902d55cbf253a49c16ed9587d6df Mon Sep 17 00:00:00 2001 From: devops Date: Wed, 17 Jan 2024 02:49:00 +0000 Subject: [PATCH 04/13] Set Version: 0.1.119 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 715965f35..841597f02 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.111 +0.1.119 diff --git a/pyproject.toml b/pyproject.toml index 8ff2ec4fd..4f9e0f45c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.111" +version = "0.1.119" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index a2af0f4d9..ab98a10dd 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.111' +VERSION: Final = '0.1.119' From 9c62dd4410660997f7211260479ed303de64bdca Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Tue, 16 Jan 2024 21:32:33 -0600 Subject: [PATCH 05/13] fix test_foundry_prove --- src/tests/integration/test_foundry_prove.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/integration/test_foundry_prove.py b/src/tests/integration/test_foundry_prove.py index 35d951161..124a63f5c 100644 --- a/src/tests/integration/test_foundry_prove.py +++ b/src/tests/integration/test_foundry_prove.py @@ -137,8 +137,8 @@ def test_foundry_prove( ) -> None: if ( test_id in SKIPPED_PROVE_TESTS - (no_use_booster and test_id in SKIPPED_LEGACY_TESTS) - (update_expected_output and not test_id in SHOW_TESTS) + or (no_use_booster and test_id in SKIPPED_LEGACY_TESTS) + or (update_expected_output and not test_id in SHOW_TESTS) ): pytest.skip() From 1411db8703f51e9b460deb7e6f3bf68e71e47c74 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Wed, 17 Jan 2024 18:10:01 -0600 Subject: [PATCH 06/13] Update expected output --- .../test-data/gas-abstraction.expected | 13 +- ...sertTest.checkFail_assert_false().expected | 1525 +++++++++++++++++ ...est_assume_false(uint256,uint256).expected | 18 +- 3 files changed, 1538 insertions(+), 18 deletions(-) create mode 100644 src/tests/integration/test-data/show/AssertTest.checkFail_assert_false().expected diff --git a/src/tests/integration/test-data/gas-abstraction.expected b/src/tests/integration/test-data/gas-abstraction.expected index e2a243b74..5a51bd0d4 100644 --- a/src/tests/integration/test-data/gas-abstraction.expected +++ b/src/tests/integration/test-data/gas-abstraction.expected @@ -390,8 +390,7 @@ Node 6: #And ( { true #Equals 0 <=Int NUMBER_CELL:Int } #And ( { true #Equals CALLER_ID:Int @@ -814,8 +812,7 @@ Node 6: andBool ( CALLER_ID:Int @@ -1026,8 +1023,7 @@ Node 6: andBool ( CALLER_ID:Int CONTINUATION:K +│ pc: 0 +│ callDepth: 0 +│ statusCode: STATUSCODE:StatusCode +│ +│ (179 steps) +├─ 3 +│ k: #end EVMC_SUCCESS ~> #pc [ STOP ] ~> #execute ~> CONTINUATION:K +│ pc: 328 +│ callDepth: 0 +│ statusCode: STATUSCODE:StatusCode +│ +│ (1 step) +├─ 4 +│ k: #halt ~> #pc [ STOP ] ~> #execute ~> CONTINUATION:K +│ pc: 328 +│ callDepth: 0 +│ statusCode: EVMC_SUCCESS +│ +│ (2 steps) +├─ 5 (terminal) +│ k: #halt ~> CONTINUATION:K +│ pc: 328 +│ callDepth: 0 +│ statusCode: EVMC_SUCCESS +│ +│ (1 step) +├─ 6 +│ k: #execute ~> CONTINUATION:K +│ pc: 0 +│ callDepth: 0 +│ statusCode: STATUSCODE:StatusCode +│ +│ (307 steps) +├─ 8 +│ k: #end EVMC_REVERT ~> #pc [ REVERT ] ~> #execute ~> CONTINUATION:K +│ pc: 2995 +│ callDepth: 0 +│ statusCode: STATUSCODE:StatusCode +│ +│ (1 step) +├─ 9 +│ k: #halt ~> #pc [ REVERT ] ~> #execute ~> CONTINUATION:K +│ pc: 2995 +│ callDepth: 0 +│ statusCode: EVMC_REVERT +│ +│ (2 steps) +├─ 10 (terminal) +│ k: #halt ~> CONTINUATION:K +│ pc: 2995 +│ callDepth: 0 +│ statusCode: EVMC_REVERT +│ +┊ constraint: true +┊ subst: OMITTED SUBST +└─ 7 (leaf, target, terminal) + k: #halt ~> CONTINUATION:K + pc: PC_CELL_5d410f2a:Int + callDepth: CALLDEPTH_CELL_5d410f2a:Int + statusCode: STATUSCODE_FINAL:StatusCode + + + + + + + rule [BASIC-BLOCK-1-TO-3]: + + + ( .K => #end EVMC_SUCCESS + ~> #pc [ STOP ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + ( _OUTPUT_CELL => b"" ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"\n\x92T\xe4" + + + 0 + + + ( .WordStack => ( selector ( "setUp()" ) : .WordStack ) ) + + + ( b"" => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" ) + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( CALLER_ID:Int + + + ( #end EVMC_SUCCESS => #halt ) + ~> #pc [ STOP ] + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + b"" + + + ( _STATUSCODE => EVMC_SUCCESS ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"\n\x92T\xe4" + + + 0 + + + ( selector ( "setUp()" ) : .WordStack ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( CALLER_ID:Int + + + #halt + ~> ( #pc [ STOP ] + ~> #execute => .K ) + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + b"" + + + EVMC_SUCCESS + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + b"\n\x92T\xe4" + + + 0 + + + ( selector ( "setUp()" ) : .WordStack ) + + + b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( CALLER_ID:Int + + + ( #halt => #execute ) + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + ( b"" => ?_OUTPUT_CELL ) + + + ( EVMC_SUCCESS => ?_STATUSCODE ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + CALLER_ID:Int + + + ( b"\n\x92T\xe4" => b"\xa2]\xdf\xf4" ) + + + 0 + + + ( ( selector ( "setUp()" ) : .WordStack ) => .WordStack ) + + + ( b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" => b"" ) + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + + ORIGIN_ID:Int + + + + NUMBER_CELL:Int + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + requires ( 0 <=Int CALLER_ID:Int + andBool ( 0 <=Int ORIGIN_ID:Int + andBool ( 0 <=Int NUMBER_CELL:Int + andBool ( CALLER_ID:Int + + + ( .K => #end EVMC_REVERT + ~> #pc [ REVERT ] ) + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + ( _OUTPUT_CELL => b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + b"\xa2]\xdf\xf4" + + + 0 + + + ( .WordStack => ( 614 : ( 327 : ( selector ( "checkFail_assert_false()" ) : .WordStack ) ) ) ) + + + ( b"" => b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" ) + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + ... + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + [label(BASIC-BLOCK-6-TO-8)] + + rule [BASIC-BLOCK-8-TO-9]: + + + ( #end EVMC_REVERT => #halt ) + ~> #pc [ REVERT ] + ~> #execute + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" + + + ( _STATUSCODE => EVMC_REVERT ) + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + b"\xa2]\xdf\xf4" + + + 0 + + + ( 614 : ( 327 : ( selector ( "checkFail_assert_false()" ) : .WordStack ) ) ) + + + b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + ... + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + [label(BASIC-BLOCK-8-TO-9)] + + rule [BASIC-BLOCK-9-TO-10]: + + + #halt + ~> ( #pc [ REVERT ] + ~> #execute => .K ) + ~> _CONTINUATION + + + NORMAL + + + SHANGHAI + + + false + + + + + b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" + + + EVMC_REVERT + + + .List + + + .List + + + ... + ... + + 728815563385977040452943777879061427756277306518 + + + b"\xa2]\xdf\xf4" + + + 0 + + + ( 614 : ( 327 : ( selector ( "checkFail_assert_false()" ) : .WordStack ) ) ) + + + b"NH{q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" + + ... + ... + + 0 + + + 0 + + + false + + + 0 + + ... + + + + .List + + + 0 + + + .Set + + + .Map + + ... + + ... + + + + ( + + 645326474426547203313410069153905908525362434349 + + + 0 + + ... + + .Map + + + .Map + + + 0 + + + + + 728815563385977040452943777879061427756277306518 + + + 0 + + ... + + .Map + + + .Map + + + 1 + + ) + + ... + + + ... + + + + + .Account + + + .Account + + + .Account + + + .Account + + + false + + + false + + ... + + + + false + + ... + + + + false + + + .Account + + + 0 + + + b"" + + + .OpcodeType + + + + + false + + + false + + ... + + + + false + + + false + + + .Set + + + .Set + + + + + [label(BASIC-BLOCK-9-TO-10)] + +endmodule +0 Failure nodes. (0 pending and 0 failing) + +Join the Runtime Verification Discord server for support: https://discord.com/invite/CurfmXNtbN + +Access documentation for KEVM foundry integration at https://docs.runtimeverification.com/kontrol diff --git a/src/tests/integration/test-data/show/AssumeTest.test_assume_false(uint256,uint256).expected b/src/tests/integration/test-data/show/AssumeTest.test_assume_false(uint256,uint256).expected index 3c03327a2..787f82bd2 100644 --- a/src/tests/integration/test-data/show/AssumeTest.test_assume_false(uint256,uint256).expected +++ b/src/tests/integration/test-data/show/AssumeTest.test_assume_false(uint256,uint256).expected @@ -278,10 +278,10 @@ Node 10: #And ( { true #Equals 0 <=Int CALLER_ID:Int } #And ( { true #Equals 0 <=Int ORIGIN_ID:Int } -#And ( #Not ( { VV0_a_114b9705:Int #Equals VV1_b_114b9705:Int } ) #And ( { true #Equals 0 <=Int NUMBER_CELL:Int } #And ( { true #Equals 0 <=Int VV0_a_114b9705:Int } #And ( { true #Equals 0 <=Int VV1_b_114b9705:Int } +#And ( { true #Equals VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int } #And ( { true #Equals CALLER_ID:Int @@ -1154,10 +1154,10 @@ Node 10: requires ( 0 <=Int CALLER_ID:Int andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( VV0_a_114b9705:Int =/=K VV1_b_114b9705:Int andBool ( 0 <=Int NUMBER_CELL:Int andBool ( 0 <=Int VV0_a_114b9705:Int andBool ( 0 <=Int VV1_b_114b9705:Int + andBool ( VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int andBool ( CALLER_ID:Int requires ( 0 <=Int CALLER_ID:Int andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( VV0_a_114b9705:Int =/=K VV1_b_114b9705:Int andBool ( 0 <=Int NUMBER_CELL:Int andBool ( 0 <=Int VV0_a_114b9705:Int andBool ( 0 <=Int VV1_b_114b9705:Int + andBool ( VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int andBool ( CALLER_ID:Int requires ( 0 <=Int CALLER_ID:Int andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( VV0_a_114b9705:Int =/=K VV1_b_114b9705:Int andBool ( 0 <=Int NUMBER_CELL:Int andBool ( 0 <=Int VV0_a_114b9705:Int andBool ( 0 <=Int VV1_b_114b9705:Int + andBool ( VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int andBool ( CALLER_ID:Int requires ( 0 <=Int CALLER_ID:Int andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( VV0_a_114b9705:Int =/=K VV1_b_114b9705:Int andBool ( 0 <=Int NUMBER_CELL:Int andBool ( 0 <=Int VV0_a_114b9705:Int andBool ( 0 <=Int VV1_b_114b9705:Int + andBool ( VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int andBool ( CALLER_ID:Int requires ( 0 <=Int CALLER_ID:Int andBool ( 0 <=Int ORIGIN_ID:Int - andBool ( VV0_a_114b9705:Int =/=K VV1_b_114b9705:Int andBool ( 0 <=Int NUMBER_CELL:Int andBool ( 0 <=Int VV0_a_114b9705:Int andBool ( 0 <=Int VV1_b_114b9705:Int + andBool ( VV0_a_114b9705:Int =/=Int VV1_b_114b9705:Int andBool ( CALLER_ID:Int Date: Thu, 18 Jan 2024 00:10:17 +0000 Subject: [PATCH 07/13] Set Version: 0.1.120 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 841597f02..27f3bc3e9 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.119 +0.1.120 diff --git a/pyproject.toml b/pyproject.toml index 558ea29e1..74f39cd29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.119" +version = "0.1.120" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index ab98a10dd..445da1b14 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.119' +VERSION: Final = '0.1.120' From 7016c36c9571b04cb77ff7cdc4034e7a7f2d2791 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Wed, 17 Jan 2024 21:44:49 -0600 Subject: [PATCH 08/13] Remove renamed test test data, add beginning of catalogue of test suite --- .../kcfg/kcfg.json | 1 - .../kcfg/nodes/1.json | 1 - .../kcfg/nodes/2.json | 1 - .../kcfg/nodes/3.json | 1 - .../kcfg/nodes/4.json | 1 - .../kcfg/nodes/5.json | 1 - .../proof.json | 1 - test_summary.md | 391 ++++++++++++++++++ 8 files changed, 391 insertions(+), 7 deletions(-) delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/kcfg.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/2.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/4.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/5.json delete mode 100644 src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/proof.json create mode 100644 test_summary.md diff --git a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/kcfg.json b/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/kcfg.json deleted file mode 100644 index 9118d143c..000000000 --- a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/kcfg.json +++ /dev/null @@ -1 +0,0 @@ -{"next": 6, "nodes": [1, 2, 3, 4, 5], "edges": [{"source": 1, "target": 3, "depth": 407}, {"source": 3, "target": 4, "depth": 1}, {"source": 4, "target": 5, "depth": 2}], "covers": [{"source": 5, "target": 2, "csubst": {"subst": {"ACCESSEDACCOUNTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCESSEDSTORAGE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCOUNTS_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".AccountCellMap", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_BALANCE_FINAL": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_NONCE_FINAL": {"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}, "ACCT_ORIGSTORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACCT_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "ACTIVE_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ADDRESSSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "BASEFEE_CELL": {"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "BLOCKHASHES_CELL": {"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "BLOCKNONCE_CELL": {"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CALLDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}, "CALLDEPTH_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CALLER_CELL_5d410f2a": {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CALLGAS_CELL": {"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}, "CALLSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "CALLVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "CHAINID_CELL": {"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "CHEATCODE_STORAGE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}, "CHECKEDDATA_CELL": {"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, "CHECKEDTOPICS_CELL": {"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "COINBASE_CELL": {"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "DEPTH_CELL": {"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "DIFFICULTY_CELL": {"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXIT_CODE_CELL_5d410f2a": {"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXPECTEDADDRESS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "EXPECTEDDATA_CELL_5d410f2a": {"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}, "EXPECTEDDEPTH_CELL": {"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "EXPECTEDEVENTADDRESS_CELL": {"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}, "EXPECTEDREASON_CELL": {"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "EXPECTEDVALUE_CELL_5d410f2a": {"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, "EXTRADATA_CELL": {"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "GAS_CELL_5d410f2a": {"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}, "GASLIMIT_CELL": {"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "GASPRICE_CELL": {"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "GASUSED_CELL": {"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}, "GENERATEDCOUNTER_CELL": {"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "INTERIMSTATES_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "ISCALLWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISEVENTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISOPCODEEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISREVERTEXPECTED_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "ISSTORAGEWHITELISTACTIVE_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "JUMPDESTS_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, "LOCALMEM_CELL_5d410f2a": {"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}, "LOG_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}, "LOGSBLOOM_CELL": {"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}, "MEMORYUSED_CELL_5d410f2a": {"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}, "MESSAGES_CELL": {"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}, "MIXHASH_CELL": {"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "MODE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NEWORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "NUMBER_CELL": {"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OMMERBLOCKHEADERS_CELL": {"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}, "OMMERSHASH_CELL": {"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OPCODETYPE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}, "ORIGIN_CELL_5d410f2a": {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "OUTPUT_CELL_5d410f2a": {"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}, "PC_CELL_5d410f2a": {"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}, "PREVCALLER_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PREVIOUSHASH_CELL": {"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "PREVORIGIN_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}, "PROGRAM_CELL_5d410f2a": {"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}, "RECEIPTSROOT_CELL": {"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "RECORDEVENT_FINAL": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "REFUND_CELL": {"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "SCHEDULE_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}, "SELFDESTRUCT_CELL": {"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "SINGLECALL_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATEROOT_CELL": {"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "STATIC_CELL_5d410f2a": {"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, "STATUSCODE_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}, "STORAGESLOTSET_FINAL": {"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}, "TIMESTAMP_CELL": {"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TOUCHEDACCOUNTS_CELL": {"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}, "TRANSACTIONSROOT_CELL": {"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}, "TXORDER_CELL": {"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "TXPENDING_CELL": {"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}, "WORDSTACK_CELL_5d410f2a": {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}}, "constraints": []}}], "splits": [], "ndbranches": [], "stuck": [], "aliases": {}} \ No newline at end of file diff --git a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json b/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json deleted file mode 100644 index b8974c6ab..000000000 --- a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/1.json +++ /dev/null @@ -1 +0,0 @@ -{"id": 1, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775807", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXIT_CODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MODE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Mode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SCHEDULE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Schedule"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OUTPUT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "INTERIMSTATES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PROGRAM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "JUMPDESTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "WORDSTACK_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "WordStack"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOCALMEM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MEMORYUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATIC_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOG_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDACCOUNTS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCESSEDSTORAGE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_BALANCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_ORIGSTORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACCT_NONCE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KVariable", "name": "ACCOUNTS_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "AccountCellMap"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWCALLER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NEWORIGIN_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ACTIVE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SINGLECALL_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDVALUE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OPCODETYPE_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "OpcodeType"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISCALLWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ISSTORAGEWHITELISTACTIVE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ADDRESSSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STORAGESLOTSET_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL_5d410f2a", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "foundry_success", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}, {"node": "KApply", "label": {"node": "KLabel", "name": "#lookup(_,_)_EVM-TYPES_Int_Map_Int", "params": []}, "args": [{"node": "KVariable", "name": "CHEATCODE_STORAGE_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Map"}}}}, {"node": "KToken", "token": "46308022326495007027972728677917914892729792999299745830475596687180801507328", "sort": {"node": "KSort", "name": "Int"}}], "arity": 2, "variable": false}, {"node": "KVariable", "name": "ISREVERTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISOPCODEEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "RECORDEVENT_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}, {"node": "KVariable", "name": "ISEVENTEXPECTED_FINAL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 6, "variable": false}], "arity": 2, "variable": false}]}} \ No newline at end of file diff --git a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json b/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json deleted file mode 100644 index 9273bbcf1..000000000 --- a/src/tests/unit/test-data/foundry-list/apr_proofs/AssertTest.testFail_assert_false():0/kcfg/nodes/3.json +++ /dev/null @@ -1 +0,0 @@ -{"id": 3, "cterm": {"config": {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#end__EVM_KItem_StatusCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATUSCODE", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "StatusCode"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#pc[_]_EVM_InternalOp_OpCode", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "REVERT_EVM_BinStackOp", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#execute_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 4}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KSequence", "items": [{"node": "KApply", "label": {"node": "KLabel", "name": "#halt_EVM_KItem", "params": []}, "args": [], "arity": 0, "variable": false}, {"node": "KVariable", "name": "CONTINUATION", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "K"}}}}], "arity": 2}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXITCODE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "NORMAL", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "LONDON_EVM", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "EVMC_REVERT_NETWORK_EndStatusCode", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TOUCHEDACCOUNTS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "851", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1107", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "912", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "16", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "561", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "529", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "593", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1041", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "305", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "401", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "497", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "822", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "214", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "278", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "855", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1141", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1173", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "890", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "827", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1080", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "537", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "761", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "249", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "894", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "222", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "735", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "319", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "860", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "956", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1052", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "348", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "509", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "477", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "930", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1026", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "386", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1088", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "993", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "102", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "292", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "324", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "549", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1125", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "362", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "971", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1000", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "937", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "297", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "526", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "879", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "207", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "367", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "1100", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "140", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "332", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "_Set_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "557", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "SetItem", "params": []}, "args": [{"node": "KToken", "token": "269", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"z\\xa9\\xcc\\xae\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "399", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "212", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_:__EVM-TYPES_WordStack_Int_WordStack", "params": []}, "args": [{"node": "KToken", "token": "2057948334", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KApply", "label": {"node": "KLabel", "name": ".WordStack_EVM-TYPES_WordStack", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"NH{q\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x80\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "992", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "9223372036854775582", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "3", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CALLGAS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 14, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "SELFDESTRUCT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Set"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".List", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "REFUND_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASPRICE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKHASHES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "PREVIOUSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERSHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "COINBASE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "STATEROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TRANSACTIONSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "RECEIPTSROOT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "LOGSBLOOM_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DIFFICULTY_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASLIMIT_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GASUSED_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Gas"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TIMESTAMP_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXTRADATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MIXHASH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BLOCKNONCE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "BASEFEE_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "OMMERBLOCKHEADERS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "JSON"}}}}], "arity": 1, "variable": false}], "arity": 17, "variable": false}], "arity": 11, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHAINID_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "_AccountCellMap_", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "728815563385977040452943777879061427756277306518", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"`\\x80`@R4\\x80\\x15a\\x00\\x10W`\\x00\\x80\\xfd[P`\\x046\\x10a\\x00\\xcfW`\\x005`\\xe0\\x1c\\x80c]\\xde\\xcb\\xfd\\x11a\\x00\\x8cW\\x80c\\xbaAO\\xa6\\x11a\\x00fW\\x80c\\xbaAO\\xa6\\x14a\\x01DW\\x80c\\xc2\\xc0\\xbc\\xc7\\x14a\\x01\\\\W\\x80c\\xf8\\xcc\\xbfG\\x14a\\x01oW\\x80c\\xfav&\\xd4\\x14a\\x01\\x82W`\\x00\\x80\\xfd[\\x80c]\\xde\\xcb\\xfd\\x14a\\x01)W\\x80cz\\xa9\\xcc\\xae\\x14a\\x01)W\\x80c\\x8c\\x0e\\xdd\\x8b\\x14a\\x011W`\\x00\\x80\\xfd[\\x80c\\n\\x92T\\xe4\\x14a\\x00\\xd4W\\x80c\\x18g]B\\x14a\\x00\\xd4W\\x80c*M\\xe1\\xa1\\x14a\\x00\\xd6W\\x80c6\\r\\xa4\\xd2\\x14a\\x00\\xd4W\\x80c:v\\x84c\\x14a\\x00\\xdeW\\x80cF\\\"\\xb1U\\x14a\\x01\\x16W[`\\x00\\x80\\xfd[\\x00[a\\x00\\xd4a\\x01\\x91V[a\\x00\\xf9sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x81V[`@Q`\\x01`\\x01`\\xa0\\x1b\\x03\\x90\\x91\\x16\\x81R` \\x01[`@Q\\x80\\x91\\x03\\x90\\xf3[a\\x00\\xd4a\\x01$6`\\x04a\\x03\\x90V[a\\x01\\xfdV[a\\x00\\xd4a\\x02\\x11V[a\\x00\\xd4a\\x01?6`\\x04a\\x03\\xa9V[a\\x02\\x19V[a\\x01La\\x021V[`@Q\\x90\\x15\\x15\\x81R` \\x01a\\x01\\rV[a\\x00\\xd4a\\x01j6`\\x04a\\x03\\x90V[a\\x03\\\\V[`\\x00Ta\\x01L\\x90b\\x01\\x00\\x00\\x90\\x04`\\xff\\x16\\x81V[`\\x00Ta\\x01L\\x90`\\xff\\x16\\x81V[V[`@\\x80Qc=!\\x12\\x05`\\xe2\\x1b\\x81R\\x90Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-\\x91c\\xf4\\x84H\\x14\\x91`\\x04\\x80\\x83\\x01\\x92`\\x00\\x92\\x91\\x90\\x82\\x90\\x03\\x01\\x81\\x83\\x87\\x80;\\x15\\x80\\x15a\\x01\\xddW`\\x00\\x80\\xfd[PZ\\xf1\\x15\\x80\\x15a\\x01\\xf1W=`\\x00\\x80>=`\\x00\\xfd[PPPPa\\x01\\x8fa\\x03\\xcbV[`d\\x81\\x10\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[PV[a\\x01\\x8fa\\x03\\xcbV[\\x80\\x82\\x10\\x15a\\x02%WPPV[a\\x02-a\\x03\\xcbV[PPV[`\\x00\\x80Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x15a\\x02QWP`\\x00Ta\\x01\\x00\\x90\\x04`\\xff\\x16\\x90V[`\\x00sq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-;\\x15a\\x03WW`@\\x80Qsq\\tp\\x9e\\xcf\\xa9\\x1a\\x80bo\\xf3\\x98\\x9dh\\xf6\\x7f[\\x1d\\xd1-` \\x82\\x01\\x81\\x90Re\\x19\\x98Z[\\x19Y`\\xd2\\x1b\\x82\\x84\\x01R\\x82Q\\x80\\x83\\x03\\x84\\x01\\x81R``\\x83\\x01\\x90\\x93R`\\x00\\x92\\x90\\x91a\\x02\\xdf\\x91\\x7ff\\x7f\\x9dp\\xcaA\\x1dp\\xea\\xd5\\r\\x8d\\\\\\\"\\x07\\r\\xaf\\xc3j\\xd7_=\\xcf^r7\\xb2*\\xde\\x9a\\xec\\xc4\\x91`\\x80\\x01a\\x04\\x1cV[`@\\x80Q`\\x1f\\x19\\x81\\x84\\x03\\x01\\x81R\\x90\\x82\\x90Ra\\x02\\xf9\\x91a\\x04@V[`\\x00`@Q\\x80\\x83\\x03\\x81`\\x00\\x86Z\\xf1\\x91PP=\\x80`\\x00\\x81\\x14a\\x036W`@Q\\x91P`\\x1f\\x19`?=\\x01\\x16\\x82\\x01`@R=\\x82R=`\\x00` \\x84\\x01>a\\x03;V[``\\x91P[P\\x91PP\\x80\\x80` \\x01\\x90Q\\x81\\x01\\x90a\\x03S\\x91\\x90a\\x04SV[\\x91PP[\\x91\\x90PV[`\\x03\\x81\\x10\\x15a\\x03oW`\\x08\\x81\\x90Ua\\x03~V[a\\x03z`\\x01\\x82a\\x04uV[`\\x08U[\\x80`\\x08T\\x11\\x15a\\x02\\x0eWa\\x02\\x0ea\\x03\\xcbV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x03\\xa2W`\\x00\\x80\\xfd[P5\\x91\\x90PV[`\\x00\\x80`@\\x83\\x85\\x03\\x12\\x15a\\x03\\xbcW`\\x00\\x80\\xfd[PP\\x805\\x92` \\x90\\x91\\x015\\x91PV[cNH{q`\\xe0\\x1b`\\x00R`\\x01`\\x04R`$`\\x00\\xfd[`\\x00\\x81Q`\\x00[\\x81\\x81\\x10\\x15a\\x04\\x02W` \\x81\\x85\\x01\\x81\\x01Q\\x86\\x83\\x01R\\x01a\\x03\\xe8V[\\x81\\x81\\x11\\x15a\\x04\\x11W`\\x00\\x82\\x86\\x01R[P\\x92\\x90\\x92\\x01\\x92\\x91PPV[`\\x01`\\x01`\\xe0\\x1b\\x03\\x19\\x83\\x16\\x81R`\\x00a\\x048`\\x04\\x83\\x01\\x84a\\x03\\xe1V[\\x94\\x93PPPPV[`\\x00a\\x04L\\x82\\x84a\\x03\\xe1V[\\x93\\x92PPPV[`\\x00` \\x82\\x84\\x03\\x12\\x15a\\x04eW`\\x00\\x80\\xfd[\\x81Q\\x80\\x15\\x15\\x81\\x14a\\x04LW`\\x00\\x80\\xfd[`\\x00\\x82\\x82\\x10\\x15a\\x04\\x95WcNH{q`\\xe0\\x1b`\\x00R`\\x11`\\x04R`$`\\x00\\xfd[P\\x03\\x90V\\xfe\\xa2dipfsX\\\"\\x12 \\x99\\x8fF\\xb2\\xef\\x85S\\x91F\\xddt\\x9e\\x85\\xa8\\x17h\\xa6\\x8b@\\xf7D#\\x0b\\x82\\x9b\\x95\\x99HY\\xbeH\\xeadsolcC\\x00\\x08\\r\\x003\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "1", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "645326474426547203313410069153905908525362434349", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\\x00\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Map", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}], "arity": 6, "variable": false}], "arity": 2, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXORDER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "TXPENDING_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "MESSAGES_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "MessageCellMap"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "DEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}], "arity": 7, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDREASON_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bytes"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDDEPTH_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 3, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Account_EVM-TYPES_Account", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "b\"\"", "sort": {"node": "KSort", "name": "Bytes"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".OpcodeType_FOUNDRY-CHEAT-CODES_OpcodeType", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDTOPICS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "List"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "CHECKEDDATA_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Bool"}}}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "EXPECTEDEVENTADDRESS_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Account"}}}}], "arity": 1, "variable": false}], "arity": 5, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KToken", "token": "false", "sort": {"node": "KSort", "name": "Bool"}}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KApply", "label": {"node": "KLabel", "name": ".Set", "params": []}, "args": [], "arity": 0, "variable": false}], "arity": 1, "variable": false}], "arity": 4, "variable": false}], "arity": 5, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "", "params": []}, "args": [{"node": "KVariable", "name": "GENERATEDCOUNTER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 1, "variable": false}], "arity": 2, "variable": false}, "constraints": [{"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "CALLER_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "ORIGIN_ID", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_<=Int_", "params": []}, "args": [{"node": "KToken", "token": "0", "sort": {"node": "KSort", "name": "Int"}}, {"node": "KVariable", "name": "NUMBER_CELL", "att": {"node": "KAtt", "att": {"org.kframework.kore.Sort": {"node": "KSort", "name": "Int"}}}}], "arity": 2, "variable": false}], "arity": 2, "variable": false}, {"node": "KApply", "label": {"node": "KLabel", "name": "#Equals", "params": [{"node": "KSort", "name": "Bool"}, {"node": "KSort", "name": "GeneratedTopCell"}]}, "args": [{"node": "KToken", "token": "true", "sort": {"node": "KSort", "name": "Bool"}}, {"node": "KApply", "label": {"node": "KLabel", "name": "_ Date: Thu, 18 Jan 2024 13:48:08 -0600 Subject: [PATCH 09/13] Update foundry list output --- .../test-data/foundry-list/foundry-list.expected | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/tests/unit/test-data/foundry-list/foundry-list.expected b/src/tests/unit/test-data/foundry-list/foundry-list.expected index 69a8cc9d4..0dcaac979 100644 --- a/src/tests/unit/test-data/foundry-list/foundry-list.expected +++ b/src/tests/unit/test-data/foundry-list/foundry-list.expected @@ -10,18 +10,6 @@ APRProof: AssertTest.setUp() refuted: 0 Subproofs: 0 -APRProof: AssertTest.testFail_assert_false():0 - status: ProofStatus.PASSED - admitted: False - nodes: 5 - pending: 0 - failing: 0 - vacuous: 0 - stuck: 0 - terminal: 1 - refuted: 0 -Subproofs: 0 - APRProof: AssertTest.testFail_assert_true():0 status: ProofStatus.FAILED admitted: False From 8db7d92a4e6df2859ee52678f922f4c3bbe84f7f Mon Sep 17 00:00:00 2001 From: devops Date: Thu, 18 Jan 2024 19:55:27 +0000 Subject: [PATCH 10/13] Set Version: 0.1.121 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 27f3bc3e9..025c31666 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.120 +0.1.121 diff --git a/pyproject.toml b/pyproject.toml index 74f39cd29..61f3bbff8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.120" +version = "0.1.121" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index 445da1b14..2672a8b2c 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.120' +VERSION: Final = '0.1.121' From 5ec8ad71132bd14f79210008f0449cf5022b4190 Mon Sep 17 00:00:00 2001 From: Noah Watson Date: Thu, 18 Jan 2024 18:53:16 -0600 Subject: [PATCH 11/13] Remove legacy backend integration tests from workflow --- .github/workflows/test-pr.yml | 2 +- .../integration/test-data/foundry-prove-skip | 96 +++++++++---------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 4d3a9d4d8..db06a2307 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -99,7 +99,7 @@ jobs: strategy: fail-fast: false matrix: - backend: ['legacy', 'booster'] + backend: ['booster'] timeout-minutes: 180 steps: - name: 'Check out code' diff --git a/src/tests/integration/test-data/foundry-prove-skip b/src/tests/integration/test-data/foundry-prove-skip index 0cf3e7d51..16aded8cb 100644 --- a/src/tests/integration/test-data/foundry-prove-skip +++ b/src/tests/integration/test-data/foundry-prove-skip @@ -10,10 +10,10 @@ AllowChangesTest.testAllow_fail() ArithmeticTest.test_decreasing_div(uint256,uint256) ArithmeticTest.test_max1_broken(uint256,uint256) ArithmeticTest.test_wdiv_rounding(uint256,uint256) -ArithmeticTest.test_wmul_increasing(uint256,uint256) ArithmeticTest.test_wmul_increasing_gt_one(uint256,uint256) ArithmeticTest.test_wmul_increasing_overflow(uint256,uint256) ArithmeticTest.test_wmul_increasing_positive(uint256,uint256) +ArithmeticTest.test_wmul_increasing(uint256,uint256) ArithmeticTest.test_wmul_rounding(uint256,uint256) ArithmeticTest.test_wmul_wdiv_inverse(uint256,uint256) ArithmeticTest.test_wmul_wdiv_inverse_underflow(uint256,uint256) @@ -71,20 +71,29 @@ ForkTest.testRPCUrl() ForkTest.testRPCUrlRevert() GasTest.testInfiniteGas() GetCodeTest.testGetCode() +IntTypeTest.testFail_int128(uint128) +IntTypeTest.testFail_int256(uint256) +IntTypeTest.testFail_int64(uint64) +IntTypeTest.test_int128_fail(uint128) +IntTypeTest.test_int128(uint128) +IntTypeTest.test_int256_fail(uint256) +IntTypeTest.test_int256(uint256) +IntTypeTest.test_int64_fail(uint64) +IntTypeTest.test_int64(uint64) LoopsTest.testIsNotPrime(uint256) -LoopsTest.testIsPrime(uint256,uint256) LoopsTest.testIsPrimeBroken(uint256,uint256) LoopsTest.testIsPrimeOpt(uint256) -LoopsTest.testMax(uint256[]) +LoopsTest.testIsPrime(uint256,uint256) LoopsTest.testMaxBroken(uint256[]) +LoopsTest.testMax(uint256[]) LoopsTest.testNthPrime(uint256,uint256) -LoopsTest.testSort(uint256[]) LoopsTest.testSortBroken(uint256[]) +LoopsTest.testSort(uint256[]) LoopsTest.testSqrt(uint256) LoopsTest.test_sum_100() LoopsTest.test_sum_1000() -LoopsTest.testSumToN(uint256) LoopsTest.testSumToNBroken(uint256) +LoopsTest.testSumToN(uint256) MockCallTest.testMockCall() MockCallTest.testMockCalls() MockCallTest.testMockCallValue() @@ -122,9 +131,9 @@ UintTypeTest.testFail_uint128(uint128) UintTypeTest.testFail_uint136(uint136) UintTypeTest.testFail_uint144(uint144) UintTypeTest.testFail_uint152(uint152) -UintTypeTest.testFail_uint16(uint16) UintTypeTest.testFail_uint160(uint160) UintTypeTest.testFail_uint168(uint168) +UintTypeTest.testFail_uint16(uint16) UintTypeTest.testFail_uint176(uint176) UintTypeTest.testFail_uint184(uint184) UintTypeTest.testFail_uint192(uint192) @@ -133,9 +142,9 @@ UintTypeTest.testFail_uint208(uint208) UintTypeTest.testFail_uint216(uint216) UintTypeTest.testFail_uint224(uint224) UintTypeTest.testFail_uint232(uint232) -UintTypeTest.testFail_uint24(uint24) UintTypeTest.testFail_uint240(uint240) UintTypeTest.testFail_uint248(uint248) +UintTypeTest.testFail_uint24(uint24) UintTypeTest.testFail_uint256(uint256) UintTypeTest.testFail_uint32(uint32) UintTypeTest.testFail_uint40(uint40) @@ -143,79 +152,70 @@ UintTypeTest.testFail_uint48(uint48) UintTypeTest.testFail_uint56(uint56) UintTypeTest.testFail_uint64(uint64) UintTypeTest.testFail_uint72(uint72) -UintTypeTest.testFail_uint8(uint8) UintTypeTest.testFail_uint80(uint80) UintTypeTest.testFail_uint88(uint88) +UintTypeTest.testFail_uint8(uint8) UintTypeTest.testFail_uint96(uint96) -UintTypeTest.test_uint104(uint104) UintTypeTest.test_uint104_fail(uint104) -UintTypeTest.test_uint112(uint112) +UintTypeTest.test_uint104(uint104) UintTypeTest.test_uint112_fail(uint112) -UintTypeTest.test_uint120(uint120) +UintTypeTest.test_uint112(uint112) UintTypeTest.test_uint120_fail(uint120) -UintTypeTest.test_uint128(uint128) +UintTypeTest.test_uint120(uint120) UintTypeTest.test_uint128_fail(uint128) -UintTypeTest.test_uint136(uint136) +UintTypeTest.test_uint128(uint128) UintTypeTest.test_uint136_fail(uint136) -UintTypeTest.test_uint144(uint144) +UintTypeTest.test_uint136(uint136) UintTypeTest.test_uint144_fail(uint144) -UintTypeTest.test_uint152(uint152) +UintTypeTest.test_uint144(uint144) UintTypeTest.test_uint152_fail(uint152) -UintTypeTest.test_uint16(uint16) -UintTypeTest.test_uint160(uint160) +UintTypeTest.test_uint152(uint152) UintTypeTest.test_uint160_fail(uint160) -UintTypeTest.test_uint168(uint168) +UintTypeTest.test_uint160(uint160) UintTypeTest.test_uint168_fail(uint168) +UintTypeTest.test_uint168(uint168) UintTypeTest.test_uint16_fail(uint16) -UintTypeTest.test_uint176(uint176) +UintTypeTest.test_uint16(uint16) UintTypeTest.test_uint176_fail(uint176) -UintTypeTest.test_uint184(uint184) +UintTypeTest.test_uint176(uint176) UintTypeTest.test_uint184_fail(uint184) -UintTypeTest.test_uint192(uint192) +UintTypeTest.test_uint184(uint184) UintTypeTest.test_uint192_fail(uint192) -UintTypeTest.test_uint200(uint200) +UintTypeTest.test_uint192(uint192) UintTypeTest.test_uint200_fail(uint200) -UintTypeTest.test_uint208(uint208) +UintTypeTest.test_uint200(uint200) UintTypeTest.test_uint208_fail(uint208) -UintTypeTest.test_uint216(uint216) +UintTypeTest.test_uint208(uint208) UintTypeTest.test_uint216_fail(uint216) -UintTypeTest.test_uint224(uint224) +UintTypeTest.test_uint216(uint216) UintTypeTest.test_uint224_fail(uint224) -UintTypeTest.test_uint232(uint232) +UintTypeTest.test_uint224(uint224) UintTypeTest.test_uint232_fail(uint232) -UintTypeTest.test_uint24(uint24) -UintTypeTest.test_uint240(uint240) +UintTypeTest.test_uint232(uint232) UintTypeTest.test_uint240_fail(uint240) -UintTypeTest.test_uint248(uint248) +UintTypeTest.test_uint240(uint240) UintTypeTest.test_uint248_fail(uint248) +UintTypeTest.test_uint248(uint248) UintTypeTest.test_uint24_fail(uint24) +UintTypeTest.test_uint24(uint24) UintTypeTest.test_uint256_fail(uint256) -UintTypeTest.test_uint32(uint32) UintTypeTest.test_uint32_fail(uint32) -UintTypeTest.test_uint40(uint40) +UintTypeTest.test_uint32(uint32) UintTypeTest.test_uint40_fail(uint40) -UintTypeTest.test_uint48(uint48) +UintTypeTest.test_uint40(uint40) UintTypeTest.test_uint48_fail(uint48) -UintTypeTest.test_uint56(uint56) +UintTypeTest.test_uint48(uint48) UintTypeTest.test_uint56_fail(uint56) -UintTypeTest.test_uint64(uint64) +UintTypeTest.test_uint56(uint56) UintTypeTest.test_uint64_fail(uint64) -UintTypeTest.test_uint72(uint72) +UintTypeTest.test_uint64(uint64) UintTypeTest.test_uint72_fail(uint72) -UintTypeTest.test_uint8(uint8) -UintTypeTest.test_uint80(uint80) +UintTypeTest.test_uint72(uint72) UintTypeTest.test_uint80_fail(uint80) -UintTypeTest.test_uint88(uint88) +UintTypeTest.test_uint80(uint80) UintTypeTest.test_uint88_fail(uint88) +UintTypeTest.test_uint88(uint88) UintTypeTest.test_uint8_fail(uint8) -UintTypeTest.test_uint96(uint96) +UintTypeTest.test_uint8(uint8) UintTypeTest.test_uint96_fail(uint96) -IntTypeTest.testFail_int128(uint128) -IntTypeTest.testFail_int256(uint256) -IntTypeTest.testFail_int64(uint64) -IntTypeTest.test_int128(uint128) -IntTypeTest.test_int128_fail(uint128) -IntTypeTest.test_int256(uint256) -IntTypeTest.test_int256_fail(uint256) -IntTypeTest.test_int64(uint64) -IntTypeTest.test_int64_fail(uint64) +UintTypeTest.test_uint96(uint96) From b6e37e0e9788552644d461c0eb10c02136812a52 Mon Sep 17 00:00:00 2001 From: devops Date: Sat, 20 Jan 2024 01:19:11 +0000 Subject: [PATCH 12/13] Set Version: 0.1.122 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 025c31666..aa3e27071 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.121 +0.1.122 diff --git a/pyproject.toml b/pyproject.toml index 61f3bbff8..4f256e20e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.121" +version = "0.1.122" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index 2672a8b2c..53e49cd55 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.121' +VERSION: Final = '0.1.122' From 77d7f569e0e8645561fce0137dded33cd353add7 Mon Sep 17 00:00:00 2001 From: devops Date: Mon, 22 Jan 2024 19:44:53 +0000 Subject: [PATCH 13/13] Set Version: 0.1.125 --- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/version b/package/version index 98eb27154..5076ee806 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.124 +0.1.125 diff --git a/pyproject.toml b/pyproject.toml index a09d47f1f..64fb90e99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.124" +version = "0.1.125" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index b76b1c3ee..d5354c218 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.124' +VERSION: Final = '0.1.125'