Skip to content

test_invalid_opcodes_after_stop()

Documentation for tests/osaka/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_invalid_opcodes_after_stop@bc691d13.

Generate fixtures for these test cases for Osaka with:

fill -v tests/osaka/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_invalid_opcodes_after_stop --fork Osaka

Test that an invalid opcode placed after STOP (terminating instruction) invalidates EOF.

Source code in tests/osaka/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@pytest.mark.parametrize(
    "opcode",
    sorted(invalid_eof_opcodes | undefined_opcodes),
)
@pytest.mark.parametrize(
    "terminating_opcode",
    sorted(halting_opcodes) + [Op.RJUMP],
)
def test_invalid_opcodes_after_stop(
    eof_test: EOFTestFiller,
    opcode: Opcode,
    terminating_opcode: Opcode,
):
    """Test that an invalid opcode placed after STOP (terminating instruction) invalidates EOF."""
    terminating_code = Bytecode(terminating_opcode)
    match terminating_opcode:  # Enhance the code for complex opcodes.
        case Op.RETURNCODE:
            terminating_code = Op.RETURNCODE[0]
        case Op.RETURN | Op.REVERT:
            terminating_code = Op.PUSH0 + Op.PUSH0 + terminating_opcode
        case Op.RJUMP:
            terminating_code = Op.RJUMP[-3]

    eof_code = Container(
        kind=ContainerKind.INITCODE
        if terminating_opcode == Op.RETURNCODE
        else ContainerKind.RUNTIME,
        sections=[
            Section.Code(code=terminating_code + opcode),
            Section.Data("00" * 32),
        ]
        + (
            [Section.Container(container=Container.Code(Op.INVALID))]
            if terminating_opcode == Op.RETURNCODE
            else []
        ),
    )

    eof_test(
        container=eof_code,
        expect_exception=EOFException.UNDEFINED_INSTRUCTION,
    )

Parametrized Test Cases

The interactive table below is also available as a standalone page.

Test ID (Abbreviated) terminating_opcode opcode
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_0C STOP OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_0D STOP OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_0E STOP OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_0F STOP OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_1E STOP OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_1F STOP OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_21 STOP OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_22 STOP OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_23 STOP OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_24 STOP OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_25 STOP OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_26 STOP OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_27 STOP OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_28 STOP OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_29 STOP OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2A STOP OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2B STOP OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2C STOP OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2D STOP OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2E STOP OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_2F STOP OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CODESIZE STOP CODESIZE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CODECOPY STOP CODECOPY
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_EXTCODESIZE STOP EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_EXTCODECOPY STOP EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_EXTCODEHASH STOP EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_4B STOP OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_4C STOP OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_4D STOP OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_4E STOP OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_4F STOP OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_JUMP STOP JUMP
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_JUMPI STOP JUMPI
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_PC STOP PC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_GAS STOP GAS
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_A5 STOP OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_A6 STOP OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_A7 STOP OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_A8 STOP OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_A9 STOP OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AA STOP OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AB STOP OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AC STOP OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AD STOP OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AE STOP OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_AF STOP OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B0 STOP OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B1 STOP OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B2 STOP OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B3 STOP OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B4 STOP OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B5 STOP OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B6 STOP OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B7 STOP OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B8 STOP OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_B9 STOP OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BA STOP OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BB STOP OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BC STOP OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BD STOP OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BE STOP OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_BF STOP OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C0 STOP OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C1 STOP OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C2 STOP OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C3 STOP OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C4 STOP OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C5 STOP OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C6 STOP OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C7 STOP OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C8 STOP OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_C9 STOP OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CA STOP OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CB STOP OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CC STOP OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CD STOP OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CE STOP OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_CF STOP OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D4 STOP OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D5 STOP OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D6 STOP OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D7 STOP OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D8 STOP OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_D9 STOP OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DA STOP OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DB STOP OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DC STOP OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DD STOP OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DE STOP OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_DF STOP OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_E9 STOP OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_EA STOP OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_EB STOP OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_EF STOP OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CREATE STOP CREATE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CALL STOP CALL
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CALLCODE STOP CALLCODE
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_DELEGATECALL STOP DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_CREATE2 STOP CREATE2
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_F6 STOP OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_STATICCALL STOP STATICCALL
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_OPCODE_FC STOP OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_STOP-opcode_SELFDESTRUCT STOP SELFDESTRUCT
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0C RETURNCODE OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0D RETURNCODE OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0E RETURNCODE OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0F RETURNCODE OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1E RETURNCODE OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1F RETURNCODE OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_21 RETURNCODE OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_22 RETURNCODE OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_23 RETURNCODE OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_24 RETURNCODE OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_25 RETURNCODE OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_26 RETURNCODE OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_27 RETURNCODE OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_28 RETURNCODE OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_29 RETURNCODE OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2A RETURNCODE OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2B RETURNCODE OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2C RETURNCODE OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2D RETURNCODE OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2E RETURNCODE OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2F RETURNCODE OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CODESIZE RETURNCODE CODESIZE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CODECOPY RETURNCODE CODECOPY
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODESIZE RETURNCODE EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODECOPY RETURNCODE EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODEHASH RETURNCODE EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4B RETURNCODE OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4C RETURNCODE OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4D RETURNCODE OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4E RETURNCODE OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4F RETURNCODE OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_JUMP RETURNCODE JUMP
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_JUMPI RETURNCODE JUMPI
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_PC RETURNCODE PC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_GAS RETURNCODE GAS
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A5 RETURNCODE OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A6 RETURNCODE OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A7 RETURNCODE OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A8 RETURNCODE OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A9 RETURNCODE OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AA RETURNCODE OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AB RETURNCODE OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AC RETURNCODE OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AD RETURNCODE OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AE RETURNCODE OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AF RETURNCODE OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B0 RETURNCODE OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B1 RETURNCODE OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B2 RETURNCODE OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B3 RETURNCODE OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B4 RETURNCODE OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B5 RETURNCODE OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B6 RETURNCODE OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B7 RETURNCODE OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B8 RETURNCODE OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B9 RETURNCODE OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BA RETURNCODE OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BB RETURNCODE OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BC RETURNCODE OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BD RETURNCODE OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BE RETURNCODE OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BF RETURNCODE OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C0 RETURNCODE OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C1 RETURNCODE OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C2 RETURNCODE OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C3 RETURNCODE OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C4 RETURNCODE OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C5 RETURNCODE OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C6 RETURNCODE OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C7 RETURNCODE OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C8 RETURNCODE OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C9 RETURNCODE OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CA RETURNCODE OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CB RETURNCODE OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CC RETURNCODE OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CD RETURNCODE OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CE RETURNCODE OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CF RETURNCODE OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D4 RETURNCODE OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D5 RETURNCODE OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D6 RETURNCODE OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D7 RETURNCODE OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D8 RETURNCODE OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D9 RETURNCODE OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DA RETURNCODE OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DB RETURNCODE OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DC RETURNCODE OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DD RETURNCODE OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DE RETURNCODE OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DF RETURNCODE OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_E9 RETURNCODE OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EA RETURNCODE OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EB RETURNCODE OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EF RETURNCODE OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CREATE RETURNCODE CREATE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CALL RETURNCODE CALL
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CALLCODE RETURNCODE CALLCODE
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_DELEGATECALL RETURNCODE DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_CREATE2 RETURNCODE CREATE2
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_F6 RETURNCODE OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_STATICCALL RETURNCODE STATICCALL
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_FC RETURNCODE OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_RETURNCODE-opcode_SELFDESTRUCT RETURNCODE SELFDESTRUCT
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_0C RETURN OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_0D RETURN OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_0E RETURN OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_0F RETURN OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_1E RETURN OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_1F RETURN OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_21 RETURN OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_22 RETURN OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_23 RETURN OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_24 RETURN OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_25 RETURN OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_26 RETURN OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_27 RETURN OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_28 RETURN OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_29 RETURN OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2A RETURN OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2B RETURN OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2C RETURN OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2D RETURN OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2E RETURN OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_2F RETURN OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CODESIZE RETURN CODESIZE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CODECOPY RETURN CODECOPY
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_EXTCODESIZE RETURN EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_EXTCODECOPY RETURN EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_EXTCODEHASH RETURN EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_4B RETURN OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_4C RETURN OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_4D RETURN OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_4E RETURN OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_4F RETURN OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_JUMP RETURN JUMP
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_JUMPI RETURN JUMPI
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_PC RETURN PC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_GAS RETURN GAS
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_A5 RETURN OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_A6 RETURN OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_A7 RETURN OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_A8 RETURN OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_A9 RETURN OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AA RETURN OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AB RETURN OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AC RETURN OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AD RETURN OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AE RETURN OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_AF RETURN OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B0 RETURN OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B1 RETURN OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B2 RETURN OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B3 RETURN OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B4 RETURN OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B5 RETURN OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B6 RETURN OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B7 RETURN OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B8 RETURN OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_B9 RETURN OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BA RETURN OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BB RETURN OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BC RETURN OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BD RETURN OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BE RETURN OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_BF RETURN OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C0 RETURN OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C1 RETURN OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C2 RETURN OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C3 RETURN OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C4 RETURN OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C5 RETURN OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C6 RETURN OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C7 RETURN OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C8 RETURN OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_C9 RETURN OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CA RETURN OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CB RETURN OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CC RETURN OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CD RETURN OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CE RETURN OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_CF RETURN OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D4 RETURN OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D5 RETURN OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D6 RETURN OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D7 RETURN OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D8 RETURN OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_D9 RETURN OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DA RETURN OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DB RETURN OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DC RETURN OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DD RETURN OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DE RETURN OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_DF RETURN OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_E9 RETURN OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_EA RETURN OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_EB RETURN OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_EF RETURN OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CREATE RETURN CREATE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CALL RETURN CALL
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CALLCODE RETURN CALLCODE
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_DELEGATECALL RETURN DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_CREATE2 RETURN CREATE2
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_F6 RETURN OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_STATICCALL RETURN STATICCALL
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_OPCODE_FC RETURN OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_RETURN-opcode_SELFDESTRUCT RETURN SELFDESTRUCT
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_0C REVERT OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_0D REVERT OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_0E REVERT OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_0F REVERT OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_1E REVERT OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_1F REVERT OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_21 REVERT OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_22 REVERT OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_23 REVERT OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_24 REVERT OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_25 REVERT OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_26 REVERT OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_27 REVERT OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_28 REVERT OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_29 REVERT OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2A REVERT OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2B REVERT OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2C REVERT OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2D REVERT OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2E REVERT OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_2F REVERT OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CODESIZE REVERT CODESIZE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CODECOPY REVERT CODECOPY
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_EXTCODESIZE REVERT EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_EXTCODECOPY REVERT EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_EXTCODEHASH REVERT EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_4B REVERT OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_4C REVERT OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_4D REVERT OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_4E REVERT OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_4F REVERT OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_JUMP REVERT JUMP
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_JUMPI REVERT JUMPI
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_PC REVERT PC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_GAS REVERT GAS
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_A5 REVERT OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_A6 REVERT OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_A7 REVERT OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_A8 REVERT OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_A9 REVERT OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AA REVERT OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AB REVERT OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AC REVERT OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AD REVERT OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AE REVERT OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_AF REVERT OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B0 REVERT OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B1 REVERT OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B2 REVERT OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B3 REVERT OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B4 REVERT OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B5 REVERT OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B6 REVERT OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B7 REVERT OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B8 REVERT OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_B9 REVERT OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BA REVERT OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BB REVERT OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BC REVERT OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BD REVERT OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BE REVERT OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_BF REVERT OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C0 REVERT OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C1 REVERT OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C2 REVERT OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C3 REVERT OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C4 REVERT OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C5 REVERT OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C6 REVERT OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C7 REVERT OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C8 REVERT OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_C9 REVERT OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CA REVERT OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CB REVERT OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CC REVERT OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CD REVERT OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CE REVERT OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_CF REVERT OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D4 REVERT OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D5 REVERT OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D6 REVERT OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D7 REVERT OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D8 REVERT OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_D9 REVERT OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DA REVERT OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DB REVERT OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DC REVERT OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DD REVERT OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DE REVERT OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_DF REVERT OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_E9 REVERT OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_EA REVERT OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_EB REVERT OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_EF REVERT OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CREATE REVERT CREATE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CALL REVERT CALL
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CALLCODE REVERT CALLCODE
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_DELEGATECALL REVERT DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_CREATE2 REVERT CREATE2
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_F6 REVERT OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_STATICCALL REVERT STATICCALL
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_OPCODE_FC REVERT OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_REVERT-opcode_SELFDESTRUCT REVERT SELFDESTRUCT
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_0C INVALID OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_0D INVALID OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_0E INVALID OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_0F INVALID OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_1E INVALID OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_1F INVALID OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_21 INVALID OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_22 INVALID OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_23 INVALID OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_24 INVALID OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_25 INVALID OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_26 INVALID OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_27 INVALID OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_28 INVALID OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_29 INVALID OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2A INVALID OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2B INVALID OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2C INVALID OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2D INVALID OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2E INVALID OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_2F INVALID OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CODESIZE INVALID CODESIZE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CODECOPY INVALID CODECOPY
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_EXTCODESIZE INVALID EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_EXTCODECOPY INVALID EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_EXTCODEHASH INVALID EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_4B INVALID OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_4C INVALID OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_4D INVALID OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_4E INVALID OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_4F INVALID OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_JUMP INVALID JUMP
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_JUMPI INVALID JUMPI
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_PC INVALID PC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_GAS INVALID GAS
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_A5 INVALID OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_A6 INVALID OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_A7 INVALID OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_A8 INVALID OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_A9 INVALID OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AA INVALID OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AB INVALID OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AC INVALID OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AD INVALID OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AE INVALID OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_AF INVALID OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B0 INVALID OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B1 INVALID OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B2 INVALID OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B3 INVALID OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B4 INVALID OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B5 INVALID OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B6 INVALID OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B7 INVALID OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B8 INVALID OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_B9 INVALID OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BA INVALID OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BB INVALID OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BC INVALID OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BD INVALID OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BE INVALID OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_BF INVALID OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C0 INVALID OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C1 INVALID OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C2 INVALID OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C3 INVALID OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C4 INVALID OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C5 INVALID OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C6 INVALID OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C7 INVALID OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C8 INVALID OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_C9 INVALID OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CA INVALID OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CB INVALID OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CC INVALID OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CD INVALID OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CE INVALID OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_CF INVALID OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D4 INVALID OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D5 INVALID OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D6 INVALID OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D7 INVALID OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D8 INVALID OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_D9 INVALID OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DA INVALID OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DB INVALID OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DC INVALID OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DD INVALID OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DE INVALID OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_DF INVALID OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_E9 INVALID OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_EA INVALID OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_EB INVALID OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_EF INVALID OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CREATE INVALID CREATE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CALL INVALID CALL
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CALLCODE INVALID CALLCODE
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_DELEGATECALL INVALID DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_CREATE2 INVALID CREATE2
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_F6 INVALID OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_STATICCALL INVALID STATICCALL
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_OPCODE_FC INVALID OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_INVALID-opcode_SELFDESTRUCT INVALID SELFDESTRUCT
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0C RJUMP OPCODE_0C
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0D RJUMP OPCODE_0D
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0E RJUMP OPCODE_0E
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0F RJUMP OPCODE_0F
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1E RJUMP OPCODE_1E
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1F RJUMP OPCODE_1F
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_21 RJUMP OPCODE_21
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_22 RJUMP OPCODE_22
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_23 RJUMP OPCODE_23
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_24 RJUMP OPCODE_24
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_25 RJUMP OPCODE_25
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_26 RJUMP OPCODE_26
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_27 RJUMP OPCODE_27
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_28 RJUMP OPCODE_28
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_29 RJUMP OPCODE_29
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2A RJUMP OPCODE_2A
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2B RJUMP OPCODE_2B
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2C RJUMP OPCODE_2C
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2D RJUMP OPCODE_2D
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2E RJUMP OPCODE_2E
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2F RJUMP OPCODE_2F
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CODESIZE RJUMP CODESIZE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CODECOPY RJUMP CODECOPY
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_EXTCODESIZE RJUMP EXTCODESIZE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_EXTCODECOPY RJUMP EXTCODECOPY
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_EXTCODEHASH RJUMP EXTCODEHASH
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4B RJUMP OPCODE_4B
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4C RJUMP OPCODE_4C
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4D RJUMP OPCODE_4D
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4E RJUMP OPCODE_4E
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4F RJUMP OPCODE_4F
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_JUMP RJUMP JUMP
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_JUMPI RJUMP JUMPI
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_PC RJUMP PC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_GAS RJUMP GAS
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A5 RJUMP OPCODE_A5
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A6 RJUMP OPCODE_A6
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A7 RJUMP OPCODE_A7
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A8 RJUMP OPCODE_A8
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A9 RJUMP OPCODE_A9
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AA RJUMP OPCODE_AA
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AB RJUMP OPCODE_AB
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AC RJUMP OPCODE_AC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AD RJUMP OPCODE_AD
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AE RJUMP OPCODE_AE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AF RJUMP OPCODE_AF
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B0 RJUMP OPCODE_B0
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B1 RJUMP OPCODE_B1
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B2 RJUMP OPCODE_B2
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B3 RJUMP OPCODE_B3
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B4 RJUMP OPCODE_B4
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B5 RJUMP OPCODE_B5
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B6 RJUMP OPCODE_B6
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B7 RJUMP OPCODE_B7
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B8 RJUMP OPCODE_B8
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B9 RJUMP OPCODE_B9
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BA RJUMP OPCODE_BA
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BB RJUMP OPCODE_BB
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BC RJUMP OPCODE_BC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BD RJUMP OPCODE_BD
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BE RJUMP OPCODE_BE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BF RJUMP OPCODE_BF
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C0 RJUMP OPCODE_C0
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C1 RJUMP OPCODE_C1
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C2 RJUMP OPCODE_C2
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C3 RJUMP OPCODE_C3
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C4 RJUMP OPCODE_C4
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C5 RJUMP OPCODE_C5
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C6 RJUMP OPCODE_C6
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C7 RJUMP OPCODE_C7
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C8 RJUMP OPCODE_C8
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C9 RJUMP OPCODE_C9
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CA RJUMP OPCODE_CA
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CB RJUMP OPCODE_CB
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CC RJUMP OPCODE_CC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CD RJUMP OPCODE_CD
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CE RJUMP OPCODE_CE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CF RJUMP OPCODE_CF
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D4 RJUMP OPCODE_D4
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D5 RJUMP OPCODE_D5
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D6 RJUMP OPCODE_D6
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D7 RJUMP OPCODE_D7
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D8 RJUMP OPCODE_D8
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D9 RJUMP OPCODE_D9
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DA RJUMP OPCODE_DA
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DB RJUMP OPCODE_DB
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DC RJUMP OPCODE_DC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DD RJUMP OPCODE_DD
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DE RJUMP OPCODE_DE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DF RJUMP OPCODE_DF
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_E9 RJUMP OPCODE_E9
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EA RJUMP OPCODE_EA
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EB RJUMP OPCODE_EB
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EF RJUMP OPCODE_EF
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CREATE RJUMP CREATE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CALL RJUMP CALL
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CALLCODE RJUMP CALLCODE
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_DELEGATECALL RJUMP DELEGATECALL
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_CREATE2 RJUMP CREATE2
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_F6 RJUMP OPCODE_F6
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_STATICCALL RJUMP STATICCALL
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_OPCODE_FC RJUMP OPCODE_FC
...fork_Osaka-eof_test-terminating_opcode_RJUMP-opcode_SELFDESTRUCT RJUMP SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0C STOP OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0D STOP OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0E STOP OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0F STOP OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_1E STOP OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_1F STOP OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_21 STOP OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_22 STOP OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_23 STOP OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_24 STOP OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_25 STOP OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_26 STOP OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_27 STOP OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_28 STOP OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_29 STOP OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2A STOP OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2B STOP OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2C STOP OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2D STOP OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2E STOP OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2F STOP OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CODESIZE STOP CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CODECOPY STOP CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODESIZE STOP EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODECOPY STOP EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODEHASH STOP EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4B STOP OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4C STOP OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4D STOP OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4E STOP OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4F STOP OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_JUMP STOP JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_JUMPI STOP JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_PC STOP PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_GAS STOP GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A5 STOP OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A6 STOP OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A7 STOP OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A8 STOP OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A9 STOP OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AA STOP OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AB STOP OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AC STOP OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AD STOP OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AE STOP OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AF STOP OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B0 STOP OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B1 STOP OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B2 STOP OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B3 STOP OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B4 STOP OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B5 STOP OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B6 STOP OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B7 STOP OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B8 STOP OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B9 STOP OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BA STOP OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BB STOP OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BC STOP OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BD STOP OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BE STOP OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BF STOP OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C0 STOP OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C1 STOP OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C2 STOP OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C3 STOP OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C4 STOP OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C5 STOP OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C6 STOP OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C7 STOP OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C8 STOP OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C9 STOP OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CA STOP OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CB STOP OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CC STOP OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CD STOP OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CE STOP OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CF STOP OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D4 STOP OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D5 STOP OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D6 STOP OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D7 STOP OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D8 STOP OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D9 STOP OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DA STOP OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DB STOP OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DC STOP OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DD STOP OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DE STOP OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DF STOP OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_E9 STOP OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EA STOP OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EB STOP OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EF STOP OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CREATE STOP CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CALL STOP CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CALLCODE STOP CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_DELEGATECALL STOP DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_CREATE2 STOP CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_F6 STOP OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_STATICCALL STOP STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_FC STOP OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_STOP-opcode_SELFDESTRUCT STOP SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0C RETURNCODE OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0D RETURNCODE OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0E RETURNCODE OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0F RETURNCODE OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1E RETURNCODE OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1F RETURNCODE OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_21 RETURNCODE OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_22 RETURNCODE OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_23 RETURNCODE OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_24 RETURNCODE OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_25 RETURNCODE OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_26 RETURNCODE OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_27 RETURNCODE OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_28 RETURNCODE OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_29 RETURNCODE OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2A RETURNCODE OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2B RETURNCODE OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2C RETURNCODE OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2D RETURNCODE OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2E RETURNCODE OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2F RETURNCODE OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CODESIZE RETURNCODE CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CODECOPY RETURNCODE CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODESIZE RETURNCODE EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODECOPY RETURNCODE EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODEHASH RETURNCODE EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4B RETURNCODE OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4C RETURNCODE OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4D RETURNCODE OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4E RETURNCODE OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4F RETURNCODE OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_JUMP RETURNCODE JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_JUMPI RETURNCODE JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_PC RETURNCODE PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_GAS RETURNCODE GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A5 RETURNCODE OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A6 RETURNCODE OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A7 RETURNCODE OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A8 RETURNCODE OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A9 RETURNCODE OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AA RETURNCODE OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AB RETURNCODE OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AC RETURNCODE OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AD RETURNCODE OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AE RETURNCODE OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AF RETURNCODE OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B0 RETURNCODE OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B1 RETURNCODE OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B2 RETURNCODE OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B3 RETURNCODE OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B4 RETURNCODE OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B5 RETURNCODE OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B6 RETURNCODE OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B7 RETURNCODE OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B8 RETURNCODE OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B9 RETURNCODE OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BA RETURNCODE OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BB RETURNCODE OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BC RETURNCODE OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BD RETURNCODE OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BE RETURNCODE OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BF RETURNCODE OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C0 RETURNCODE OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C1 RETURNCODE OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C2 RETURNCODE OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C3 RETURNCODE OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C4 RETURNCODE OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C5 RETURNCODE OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C6 RETURNCODE OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C7 RETURNCODE OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C8 RETURNCODE OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C9 RETURNCODE OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CA RETURNCODE OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CB RETURNCODE OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CC RETURNCODE OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CD RETURNCODE OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CE RETURNCODE OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CF RETURNCODE OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D4 RETURNCODE OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D5 RETURNCODE OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D6 RETURNCODE OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D7 RETURNCODE OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D8 RETURNCODE OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D9 RETURNCODE OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DA RETURNCODE OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DB RETURNCODE OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DC RETURNCODE OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DD RETURNCODE OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DE RETURNCODE OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DF RETURNCODE OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_E9 RETURNCODE OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EA RETURNCODE OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EB RETURNCODE OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EF RETURNCODE OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CREATE RETURNCODE CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CALL RETURNCODE CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CALLCODE RETURNCODE CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_DELEGATECALL RETURNCODE DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CREATE2 RETURNCODE CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_F6 RETURNCODE OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_STATICCALL RETURNCODE STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_FC RETURNCODE OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_SELFDESTRUCT RETURNCODE SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0C RETURN OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0D RETURN OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0E RETURN OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0F RETURN OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_1E RETURN OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_1F RETURN OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_21 RETURN OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_22 RETURN OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_23 RETURN OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_24 RETURN OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_25 RETURN OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_26 RETURN OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_27 RETURN OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_28 RETURN OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_29 RETURN OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2A RETURN OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2B RETURN OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2C RETURN OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2D RETURN OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2E RETURN OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2F RETURN OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CODESIZE RETURN CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CODECOPY RETURN CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODESIZE RETURN EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODECOPY RETURN EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODEHASH RETURN EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4B RETURN OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4C RETURN OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4D RETURN OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4E RETURN OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4F RETURN OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_JUMP RETURN JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_JUMPI RETURN JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_PC RETURN PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_GAS RETURN GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A5 RETURN OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A6 RETURN OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A7 RETURN OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A8 RETURN OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A9 RETURN OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AA RETURN OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AB RETURN OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AC RETURN OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AD RETURN OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AE RETURN OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AF RETURN OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B0 RETURN OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B1 RETURN OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B2 RETURN OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B3 RETURN OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B4 RETURN OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B5 RETURN OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B6 RETURN OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B7 RETURN OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B8 RETURN OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B9 RETURN OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BA RETURN OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BB RETURN OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BC RETURN OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BD RETURN OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BE RETURN OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BF RETURN OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C0 RETURN OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C1 RETURN OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C2 RETURN OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C3 RETURN OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C4 RETURN OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C5 RETURN OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C6 RETURN OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C7 RETURN OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C8 RETURN OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C9 RETURN OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CA RETURN OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CB RETURN OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CC RETURN OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CD RETURN OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CE RETURN OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CF RETURN OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D4 RETURN OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D5 RETURN OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D6 RETURN OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D7 RETURN OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D8 RETURN OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D9 RETURN OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DA RETURN OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DB RETURN OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DC RETURN OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DD RETURN OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DE RETURN OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DF RETURN OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_E9 RETURN OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EA RETURN OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EB RETURN OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EF RETURN OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CREATE RETURN CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CALL RETURN CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CALLCODE RETURN CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_DELEGATECALL RETURN DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_CREATE2 RETURN CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_F6 RETURN OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_STATICCALL RETURN STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_FC RETURN OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RETURN-opcode_SELFDESTRUCT RETURN SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0C REVERT OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0D REVERT OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0E REVERT OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0F REVERT OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_1E REVERT OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_1F REVERT OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_21 REVERT OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_22 REVERT OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_23 REVERT OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_24 REVERT OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_25 REVERT OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_26 REVERT OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_27 REVERT OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_28 REVERT OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_29 REVERT OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2A REVERT OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2B REVERT OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2C REVERT OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2D REVERT OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2E REVERT OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2F REVERT OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CODESIZE REVERT CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CODECOPY REVERT CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODESIZE REVERT EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODECOPY REVERT EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODEHASH REVERT EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4B REVERT OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4C REVERT OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4D REVERT OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4E REVERT OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4F REVERT OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_JUMP REVERT JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_JUMPI REVERT JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_PC REVERT PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_GAS REVERT GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A5 REVERT OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A6 REVERT OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A7 REVERT OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A8 REVERT OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A9 REVERT OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AA REVERT OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AB REVERT OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AC REVERT OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AD REVERT OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AE REVERT OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AF REVERT OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B0 REVERT OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B1 REVERT OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B2 REVERT OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B3 REVERT OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B4 REVERT OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B5 REVERT OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B6 REVERT OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B7 REVERT OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B8 REVERT OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B9 REVERT OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BA REVERT OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BB REVERT OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BC REVERT OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BD REVERT OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BE REVERT OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BF REVERT OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C0 REVERT OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C1 REVERT OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C2 REVERT OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C3 REVERT OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C4 REVERT OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C5 REVERT OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C6 REVERT OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C7 REVERT OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C8 REVERT OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C9 REVERT OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CA REVERT OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CB REVERT OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CC REVERT OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CD REVERT OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CE REVERT OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CF REVERT OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D4 REVERT OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D5 REVERT OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D6 REVERT OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D7 REVERT OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D8 REVERT OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D9 REVERT OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DA REVERT OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DB REVERT OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DC REVERT OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DD REVERT OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DE REVERT OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DF REVERT OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_E9 REVERT OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EA REVERT OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EB REVERT OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EF REVERT OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CREATE REVERT CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CALL REVERT CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CALLCODE REVERT CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_DELEGATECALL REVERT DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_CREATE2 REVERT CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_F6 REVERT OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_STATICCALL REVERT STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_FC REVERT OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_REVERT-opcode_SELFDESTRUCT REVERT SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0C INVALID OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0D INVALID OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0E INVALID OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0F INVALID OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_1E INVALID OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_1F INVALID OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_21 INVALID OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_22 INVALID OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_23 INVALID OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_24 INVALID OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_25 INVALID OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_26 INVALID OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_27 INVALID OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_28 INVALID OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_29 INVALID OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2A INVALID OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2B INVALID OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2C INVALID OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2D INVALID OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2E INVALID OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2F INVALID OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CODESIZE INVALID CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CODECOPY INVALID CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODESIZE INVALID EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODECOPY INVALID EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODEHASH INVALID EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4B INVALID OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4C INVALID OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4D INVALID OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4E INVALID OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4F INVALID OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_JUMP INVALID JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_JUMPI INVALID JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_PC INVALID PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_GAS INVALID GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A5 INVALID OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A6 INVALID OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A7 INVALID OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A8 INVALID OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A9 INVALID OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AA INVALID OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AB INVALID OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AC INVALID OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AD INVALID OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AE INVALID OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AF INVALID OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B0 INVALID OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B1 INVALID OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B2 INVALID OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B3 INVALID OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B4 INVALID OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B5 INVALID OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B6 INVALID OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B7 INVALID OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B8 INVALID OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B9 INVALID OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BA INVALID OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BB INVALID OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BC INVALID OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BD INVALID OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BE INVALID OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BF INVALID OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C0 INVALID OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C1 INVALID OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C2 INVALID OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C3 INVALID OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C4 INVALID OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C5 INVALID OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C6 INVALID OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C7 INVALID OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C8 INVALID OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C9 INVALID OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CA INVALID OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CB INVALID OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CC INVALID OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CD INVALID OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CE INVALID OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CF INVALID OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D4 INVALID OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D5 INVALID OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D6 INVALID OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D7 INVALID OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D8 INVALID OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D9 INVALID OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DA INVALID OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DB INVALID OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DC INVALID OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DD INVALID OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DE INVALID OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DF INVALID OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_E9 INVALID OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EA INVALID OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EB INVALID OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EF INVALID OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CREATE INVALID CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CALL INVALID CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CALLCODE INVALID CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_DELEGATECALL INVALID DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_CREATE2 INVALID CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_F6 INVALID OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_STATICCALL INVALID STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_FC INVALID OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_INVALID-opcode_SELFDESTRUCT INVALID SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0C RJUMP OPCODE_0C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0D RJUMP OPCODE_0D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0E RJUMP OPCODE_0E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0F RJUMP OPCODE_0F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1E RJUMP OPCODE_1E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1F RJUMP OPCODE_1F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_21 RJUMP OPCODE_21
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_22 RJUMP OPCODE_22
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_23 RJUMP OPCODE_23
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_24 RJUMP OPCODE_24
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_25 RJUMP OPCODE_25
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_26 RJUMP OPCODE_26
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_27 RJUMP OPCODE_27
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_28 RJUMP OPCODE_28
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_29 RJUMP OPCODE_29
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2A RJUMP OPCODE_2A
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2B RJUMP OPCODE_2B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2C RJUMP OPCODE_2C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2D RJUMP OPCODE_2D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2E RJUMP OPCODE_2E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2F RJUMP OPCODE_2F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CODESIZE RJUMP CODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CODECOPY RJUMP CODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODESIZE RJUMP EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODECOPY RJUMP EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODEHASH RJUMP EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4B RJUMP OPCODE_4B
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4C RJUMP OPCODE_4C
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4D RJUMP OPCODE_4D
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4E RJUMP OPCODE_4E
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4F RJUMP OPCODE_4F
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_JUMP RJUMP JUMP
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_JUMPI RJUMP JUMPI
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_PC RJUMP PC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_GAS RJUMP GAS
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A5 RJUMP OPCODE_A5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A6 RJUMP OPCODE_A6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A7 RJUMP OPCODE_A7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A8 RJUMP OPCODE_A8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A9 RJUMP OPCODE_A9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AA RJUMP OPCODE_AA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AB RJUMP OPCODE_AB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AC RJUMP OPCODE_AC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AD RJUMP OPCODE_AD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AE RJUMP OPCODE_AE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AF RJUMP OPCODE_AF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B0 RJUMP OPCODE_B0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B1 RJUMP OPCODE_B1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B2 RJUMP OPCODE_B2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B3 RJUMP OPCODE_B3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B4 RJUMP OPCODE_B4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B5 RJUMP OPCODE_B5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B6 RJUMP OPCODE_B6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B7 RJUMP OPCODE_B7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B8 RJUMP OPCODE_B8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B9 RJUMP OPCODE_B9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BA RJUMP OPCODE_BA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BB RJUMP OPCODE_BB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BC RJUMP OPCODE_BC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BD RJUMP OPCODE_BD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BE RJUMP OPCODE_BE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BF RJUMP OPCODE_BF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C0 RJUMP OPCODE_C0
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C1 RJUMP OPCODE_C1
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C2 RJUMP OPCODE_C2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C3 RJUMP OPCODE_C3
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C4 RJUMP OPCODE_C4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C5 RJUMP OPCODE_C5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C6 RJUMP OPCODE_C6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C7 RJUMP OPCODE_C7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C8 RJUMP OPCODE_C8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C9 RJUMP OPCODE_C9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CA RJUMP OPCODE_CA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CB RJUMP OPCODE_CB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CC RJUMP OPCODE_CC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CD RJUMP OPCODE_CD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CE RJUMP OPCODE_CE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CF RJUMP OPCODE_CF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D4 RJUMP OPCODE_D4
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D5 RJUMP OPCODE_D5
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D6 RJUMP OPCODE_D6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D7 RJUMP OPCODE_D7
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D8 RJUMP OPCODE_D8
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D9 RJUMP OPCODE_D9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DA RJUMP OPCODE_DA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DB RJUMP OPCODE_DB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DC RJUMP OPCODE_DC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DD RJUMP OPCODE_DD
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DE RJUMP OPCODE_DE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DF RJUMP OPCODE_DF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_E9 RJUMP OPCODE_E9
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EA RJUMP OPCODE_EA
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EB RJUMP OPCODE_EB
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EF RJUMP OPCODE_EF
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CREATE RJUMP CREATE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CALL RJUMP CALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CALLCODE RJUMP CALLCODE
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_DELEGATECALL RJUMP DELEGATECALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_CREATE2 RJUMP CREATE2
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_F6 RJUMP OPCODE_F6
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_STATICCALL RJUMP STATICCALL
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_FC RJUMP OPCODE_FC
...fork_Osaka-state_test_from_eof_test-terminating_opcode_RJUMP-opcode_SELFDESTRUCT RJUMP SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0C STOP OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0D STOP OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0E STOP OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_0F STOP OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_1E STOP OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_1F STOP OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_21 STOP OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_22 STOP OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_23 STOP OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_24 STOP OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_25 STOP OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_26 STOP OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_27 STOP OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_28 STOP OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_29 STOP OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2A STOP OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2B STOP OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2C STOP OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2D STOP OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2E STOP OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_2F STOP OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CODESIZE STOP CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CODECOPY STOP CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODESIZE STOP EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODECOPY STOP EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_EXTCODEHASH STOP EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4B STOP OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4C STOP OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4D STOP OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4E STOP OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_4F STOP OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_JUMP STOP JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_JUMPI STOP JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_PC STOP PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_GAS STOP GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A5 STOP OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A6 STOP OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A7 STOP OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A8 STOP OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_A9 STOP OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AA STOP OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AB STOP OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AC STOP OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AD STOP OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AE STOP OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_AF STOP OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B0 STOP OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B1 STOP OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B2 STOP OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B3 STOP OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B4 STOP OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B5 STOP OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B6 STOP OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B7 STOP OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B8 STOP OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_B9 STOP OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BA STOP OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BB STOP OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BC STOP OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BD STOP OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BE STOP OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_BF STOP OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C0 STOP OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C1 STOP OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C2 STOP OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C3 STOP OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C4 STOP OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C5 STOP OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C6 STOP OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C7 STOP OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C8 STOP OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_C9 STOP OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CA STOP OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CB STOP OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CC STOP OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CD STOP OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CE STOP OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_CF STOP OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D4 STOP OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D5 STOP OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D6 STOP OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D7 STOP OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D8 STOP OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_D9 STOP OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DA STOP OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DB STOP OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DC STOP OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DD STOP OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DE STOP OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_DF STOP OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_E9 STOP OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EA STOP OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EB STOP OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_EF STOP OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CREATE STOP CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CALL STOP CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CALLCODE STOP CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_DELEGATECALL STOP DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_CREATE2 STOP CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_F6 STOP OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_STATICCALL STOP STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_OPCODE_FC STOP OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_STOP-opcode_SELFDESTRUCT STOP SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0C RETURNCODE OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0D RETURNCODE OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0E RETURNCODE OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_0F RETURNCODE OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1E RETURNCODE OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_1F RETURNCODE OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_21 RETURNCODE OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_22 RETURNCODE OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_23 RETURNCODE OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_24 RETURNCODE OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_25 RETURNCODE OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_26 RETURNCODE OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_27 RETURNCODE OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_28 RETURNCODE OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_29 RETURNCODE OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2A RETURNCODE OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2B RETURNCODE OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2C RETURNCODE OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2D RETURNCODE OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2E RETURNCODE OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_2F RETURNCODE OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CODESIZE RETURNCODE CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CODECOPY RETURNCODE CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODESIZE RETURNCODE EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODECOPY RETURNCODE EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_EXTCODEHASH RETURNCODE EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4B RETURNCODE OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4C RETURNCODE OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4D RETURNCODE OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4E RETURNCODE OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_4F RETURNCODE OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_JUMP RETURNCODE JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_JUMPI RETURNCODE JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_PC RETURNCODE PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_GAS RETURNCODE GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A5 RETURNCODE OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A6 RETURNCODE OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A7 RETURNCODE OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A8 RETURNCODE OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_A9 RETURNCODE OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AA RETURNCODE OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AB RETURNCODE OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AC RETURNCODE OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AD RETURNCODE OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AE RETURNCODE OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_AF RETURNCODE OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B0 RETURNCODE OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B1 RETURNCODE OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B2 RETURNCODE OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B3 RETURNCODE OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B4 RETURNCODE OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B5 RETURNCODE OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B6 RETURNCODE OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B7 RETURNCODE OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B8 RETURNCODE OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_B9 RETURNCODE OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BA RETURNCODE OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BB RETURNCODE OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BC RETURNCODE OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BD RETURNCODE OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BE RETURNCODE OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_BF RETURNCODE OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C0 RETURNCODE OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C1 RETURNCODE OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C2 RETURNCODE OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C3 RETURNCODE OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C4 RETURNCODE OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C5 RETURNCODE OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C6 RETURNCODE OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C7 RETURNCODE OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C8 RETURNCODE OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_C9 RETURNCODE OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CA RETURNCODE OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CB RETURNCODE OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CC RETURNCODE OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CD RETURNCODE OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CE RETURNCODE OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_CF RETURNCODE OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D4 RETURNCODE OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D5 RETURNCODE OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D6 RETURNCODE OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D7 RETURNCODE OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D8 RETURNCODE OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_D9 RETURNCODE OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DA RETURNCODE OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DB RETURNCODE OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DC RETURNCODE OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DD RETURNCODE OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DE RETURNCODE OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_DF RETURNCODE OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_E9 RETURNCODE OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EA RETURNCODE OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EB RETURNCODE OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_EF RETURNCODE OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CREATE RETURNCODE CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CALL RETURNCODE CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CALLCODE RETURNCODE CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_DELEGATECALL RETURNCODE DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_CREATE2 RETURNCODE CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_F6 RETURNCODE OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_STATICCALL RETURNCODE STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_OPCODE_FC RETURNCODE OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURNCODE-opcode_SELFDESTRUCT RETURNCODE SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0C RETURN OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0D RETURN OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0E RETURN OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_0F RETURN OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_1E RETURN OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_1F RETURN OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_21 RETURN OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_22 RETURN OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_23 RETURN OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_24 RETURN OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_25 RETURN OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_26 RETURN OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_27 RETURN OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_28 RETURN OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_29 RETURN OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2A RETURN OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2B RETURN OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2C RETURN OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2D RETURN OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2E RETURN OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_2F RETURN OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CODESIZE RETURN CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CODECOPY RETURN CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODESIZE RETURN EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODECOPY RETURN EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_EXTCODEHASH RETURN EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4B RETURN OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4C RETURN OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4D RETURN OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4E RETURN OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_4F RETURN OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_JUMP RETURN JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_JUMPI RETURN JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_PC RETURN PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_GAS RETURN GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A5 RETURN OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A6 RETURN OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A7 RETURN OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A8 RETURN OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_A9 RETURN OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AA RETURN OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AB RETURN OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AC RETURN OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AD RETURN OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AE RETURN OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_AF RETURN OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B0 RETURN OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B1 RETURN OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B2 RETURN OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B3 RETURN OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B4 RETURN OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B5 RETURN OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B6 RETURN OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B7 RETURN OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B8 RETURN OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_B9 RETURN OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BA RETURN OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BB RETURN OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BC RETURN OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BD RETURN OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BE RETURN OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_BF RETURN OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C0 RETURN OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C1 RETURN OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C2 RETURN OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C3 RETURN OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C4 RETURN OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C5 RETURN OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C6 RETURN OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C7 RETURN OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C8 RETURN OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_C9 RETURN OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CA RETURN OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CB RETURN OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CC RETURN OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CD RETURN OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CE RETURN OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_CF RETURN OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D4 RETURN OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D5 RETURN OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D6 RETURN OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D7 RETURN OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D8 RETURN OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_D9 RETURN OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DA RETURN OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DB RETURN OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DC RETURN OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DD RETURN OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DE RETURN OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_DF RETURN OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_E9 RETURN OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EA RETURN OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EB RETURN OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_EF RETURN OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CREATE RETURN CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CALL RETURN CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CALLCODE RETURN CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_DELEGATECALL RETURN DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_CREATE2 RETURN CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_F6 RETURN OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_STATICCALL RETURN STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_OPCODE_FC RETURN OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RETURN-opcode_SELFDESTRUCT RETURN SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0C REVERT OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0D REVERT OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0E REVERT OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_0F REVERT OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_1E REVERT OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_1F REVERT OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_21 REVERT OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_22 REVERT OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_23 REVERT OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_24 REVERT OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_25 REVERT OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_26 REVERT OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_27 REVERT OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_28 REVERT OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_29 REVERT OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2A REVERT OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2B REVERT OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2C REVERT OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2D REVERT OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2E REVERT OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_2F REVERT OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CODESIZE REVERT CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CODECOPY REVERT CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODESIZE REVERT EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODECOPY REVERT EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_EXTCODEHASH REVERT EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4B REVERT OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4C REVERT OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4D REVERT OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4E REVERT OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_4F REVERT OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_JUMP REVERT JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_JUMPI REVERT JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_PC REVERT PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_GAS REVERT GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A5 REVERT OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A6 REVERT OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A7 REVERT OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A8 REVERT OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_A9 REVERT OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AA REVERT OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AB REVERT OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AC REVERT OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AD REVERT OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AE REVERT OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_AF REVERT OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B0 REVERT OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B1 REVERT OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B2 REVERT OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B3 REVERT OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B4 REVERT OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B5 REVERT OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B6 REVERT OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B7 REVERT OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B8 REVERT OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_B9 REVERT OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BA REVERT OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BB REVERT OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BC REVERT OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BD REVERT OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BE REVERT OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_BF REVERT OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C0 REVERT OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C1 REVERT OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C2 REVERT OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C3 REVERT OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C4 REVERT OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C5 REVERT OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C6 REVERT OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C7 REVERT OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C8 REVERT OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_C9 REVERT OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CA REVERT OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CB REVERT OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CC REVERT OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CD REVERT OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CE REVERT OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_CF REVERT OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D4 REVERT OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D5 REVERT OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D6 REVERT OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D7 REVERT OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D8 REVERT OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_D9 REVERT OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DA REVERT OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DB REVERT OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DC REVERT OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DD REVERT OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DE REVERT OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_DF REVERT OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_E9 REVERT OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EA REVERT OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EB REVERT OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_EF REVERT OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CREATE REVERT CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CALL REVERT CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CALLCODE REVERT CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_DELEGATECALL REVERT DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_CREATE2 REVERT CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_F6 REVERT OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_STATICCALL REVERT STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_OPCODE_FC REVERT OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_REVERT-opcode_SELFDESTRUCT REVERT SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0C INVALID OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0D INVALID OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0E INVALID OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_0F INVALID OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_1E INVALID OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_1F INVALID OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_21 INVALID OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_22 INVALID OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_23 INVALID OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_24 INVALID OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_25 INVALID OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_26 INVALID OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_27 INVALID OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_28 INVALID OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_29 INVALID OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2A INVALID OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2B INVALID OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2C INVALID OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2D INVALID OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2E INVALID OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_2F INVALID OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CODESIZE INVALID CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CODECOPY INVALID CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODESIZE INVALID EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODECOPY INVALID EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_EXTCODEHASH INVALID EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4B INVALID OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4C INVALID OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4D INVALID OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4E INVALID OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_4F INVALID OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_JUMP INVALID JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_JUMPI INVALID JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_PC INVALID PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_GAS INVALID GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A5 INVALID OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A6 INVALID OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A7 INVALID OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A8 INVALID OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_A9 INVALID OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AA INVALID OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AB INVALID OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AC INVALID OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AD INVALID OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AE INVALID OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_AF INVALID OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B0 INVALID OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B1 INVALID OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B2 INVALID OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B3 INVALID OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B4 INVALID OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B5 INVALID OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B6 INVALID OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B7 INVALID OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B8 INVALID OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_B9 INVALID OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BA INVALID OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BB INVALID OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BC INVALID OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BD INVALID OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BE INVALID OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_BF INVALID OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C0 INVALID OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C1 INVALID OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C2 INVALID OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C3 INVALID OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C4 INVALID OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C5 INVALID OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C6 INVALID OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C7 INVALID OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C8 INVALID OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_C9 INVALID OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CA INVALID OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CB INVALID OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CC INVALID OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CD INVALID OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CE INVALID OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_CF INVALID OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D4 INVALID OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D5 INVALID OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D6 INVALID OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D7 INVALID OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D8 INVALID OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_D9 INVALID OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DA INVALID OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DB INVALID OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DC INVALID OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DD INVALID OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DE INVALID OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_DF INVALID OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_E9 INVALID OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EA INVALID OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EB INVALID OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_EF INVALID OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CREATE INVALID CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CALL INVALID CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CALLCODE INVALID CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_DELEGATECALL INVALID DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_CREATE2 INVALID CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_F6 INVALID OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_STATICCALL INVALID STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_OPCODE_FC INVALID OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_INVALID-opcode_SELFDESTRUCT INVALID SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0C RJUMP OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0D RJUMP OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0E RJUMP OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_0F RJUMP OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1E RJUMP OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_1F RJUMP OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_21 RJUMP OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_22 RJUMP OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_23 RJUMP OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_24 RJUMP OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_25 RJUMP OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_26 RJUMP OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_27 RJUMP OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_28 RJUMP OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_29 RJUMP OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2A RJUMP OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2B RJUMP OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2C RJUMP OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2D RJUMP OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2E RJUMP OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_2F RJUMP OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CODESIZE RJUMP CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CODECOPY RJUMP CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODESIZE RJUMP EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODECOPY RJUMP EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_EXTCODEHASH RJUMP EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4B RJUMP OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4C RJUMP OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4D RJUMP OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4E RJUMP OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_4F RJUMP OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_JUMP RJUMP JUMP
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_JUMPI RJUMP JUMPI
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_PC RJUMP PC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_GAS RJUMP GAS
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A5 RJUMP OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A6 RJUMP OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A7 RJUMP OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A8 RJUMP OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_A9 RJUMP OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AA RJUMP OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AB RJUMP OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AC RJUMP OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AD RJUMP OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AE RJUMP OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_AF RJUMP OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B0 RJUMP OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B1 RJUMP OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B2 RJUMP OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B3 RJUMP OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B4 RJUMP OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B5 RJUMP OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B6 RJUMP OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B7 RJUMP OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B8 RJUMP OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_B9 RJUMP OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BA RJUMP OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BB RJUMP OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BC RJUMP OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BD RJUMP OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BE RJUMP OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_BF RJUMP OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C0 RJUMP OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C1 RJUMP OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C2 RJUMP OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C3 RJUMP OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C4 RJUMP OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C5 RJUMP OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C6 RJUMP OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C7 RJUMP OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C8 RJUMP OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_C9 RJUMP OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CA RJUMP OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CB RJUMP OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CC RJUMP OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CD RJUMP OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CE RJUMP OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_CF RJUMP OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D4 RJUMP OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D5 RJUMP OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D6 RJUMP OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D7 RJUMP OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D8 RJUMP OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_D9 RJUMP OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DA RJUMP OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DB RJUMP OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DC RJUMP OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DD RJUMP OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DE RJUMP OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_DF RJUMP OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_E9 RJUMP OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EA RJUMP OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EB RJUMP OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_EF RJUMP OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CREATE RJUMP CREATE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CALL RJUMP CALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CALLCODE RJUMP CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_DELEGATECALL RJUMP DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_CREATE2 RJUMP CREATE2
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_F6 RJUMP OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_STATICCALL RJUMP STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_OPCODE_FC RJUMP OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-terminating_opcode_RJUMP-opcode_SELFDESTRUCT RJUMP SELFDESTRUCT