Skip to content

test_all_opcodes_in_container()

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

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_all_opcodes_in_container --fork Osaka

Test all opcodes inside valid container 257 because 0x5B is duplicated.

Source code in tests/osaka/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@pytest.mark.parametrize(
    "opcode",
    sorted((all_opcodes | undefined_opcodes) - {Op.RETF}),
)
def test_all_opcodes_in_container(
    eof_test: EOFTestFiller,
    opcode: Opcode,
):
    """
    Test all opcodes inside valid container
    257 because 0x5B is duplicated.
    """
    data_portion = 1 if opcode == Op.CALLF else 0
    opcode_with_data_portion = opcode[data_portion] if opcode.has_data_portion() else opcode

    # opcode_with_data_portion has the correct minimum stack height
    bytecode = Op.PUSH0 * opcode_with_data_portion.min_stack_height + opcode_with_data_portion

    if opcode not in (halting_opcodes | section_terminating_opcodes):
        bytecode += Op.STOP

    sections = [Section.Code(code=bytecode)]

    match opcode:
        case Op.EOFCREATE | Op.RETURNCODE:
            sections.append(
                Section.Container(
                    container=Container(
                        sections=[
                            Section.Code(code=Op.REVERT(0, 0)),
                        ]
                    )
                )
            )
        case Op.CALLF:
            sections.append(
                Section.Code(
                    code=Op.RETF,
                    code_outputs=0,
                )
            )
    sections.append(Section.Data("1122334455667788" * 4))

    if opcode == Op.RETURNCODE:
        eof_code = Container(sections=sections, kind=ContainerKind.INITCODE)
    else:
        eof_code = Container(sections=sections)

    eof_test(
        container=eof_code,
        expect_exception=(
            None if opcode in valid_eof_opcodes else EOFException.UNDEFINED_INSTRUCTION
        ),
    )

Parametrized Test Cases

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

Test ID (Abbreviated) opcode
...fork_Osaka-eof_test-opcode_STOP STOP
...fork_Osaka-eof_test-opcode_ADD ADD
...fork_Osaka-eof_test-opcode_MUL MUL
...fork_Osaka-eof_test-opcode_SUB SUB
...fork_Osaka-eof_test-opcode_DIV DIV
...fork_Osaka-eof_test-opcode_SDIV SDIV
...fork_Osaka-eof_test-opcode_MOD MOD
...fork_Osaka-eof_test-opcode_SMOD SMOD
...fork_Osaka-eof_test-opcode_ADDMOD ADDMOD
...fork_Osaka-eof_test-opcode_MULMOD MULMOD
...fork_Osaka-eof_test-opcode_EXP EXP
...fork_Osaka-eof_test-opcode_SIGNEXTEND SIGNEXTEND
...fork_Osaka-eof_test-opcode_OPCODE_0C OPCODE_0C
...fork_Osaka-eof_test-opcode_OPCODE_0D OPCODE_0D
...fork_Osaka-eof_test-opcode_OPCODE_0E OPCODE_0E
...fork_Osaka-eof_test-opcode_OPCODE_0F OPCODE_0F
...fork_Osaka-eof_test-opcode_LT LT
...fork_Osaka-eof_test-opcode_GT GT
...fork_Osaka-eof_test-opcode_SLT SLT
...fork_Osaka-eof_test-opcode_SGT SGT
...fork_Osaka-eof_test-opcode_EQ EQ
...fork_Osaka-eof_test-opcode_ISZERO ISZERO
...fork_Osaka-eof_test-opcode_AND AND
...fork_Osaka-eof_test-opcode_OR OR
...fork_Osaka-eof_test-opcode_XOR XOR
...fork_Osaka-eof_test-opcode_NOT NOT
...fork_Osaka-eof_test-opcode_BYTE BYTE
...fork_Osaka-eof_test-opcode_SHL SHL
...fork_Osaka-eof_test-opcode_SHR SHR
...fork_Osaka-eof_test-opcode_SAR SAR
...fork_Osaka-eof_test-opcode_OPCODE_1E OPCODE_1E
...fork_Osaka-eof_test-opcode_OPCODE_1F OPCODE_1F
...fork_Osaka-eof_test-opcode_SHA3 SHA3
...fork_Osaka-eof_test-opcode_OPCODE_21 OPCODE_21
...fork_Osaka-eof_test-opcode_OPCODE_22 OPCODE_22
...fork_Osaka-eof_test-opcode_OPCODE_23 OPCODE_23
...fork_Osaka-eof_test-opcode_OPCODE_24 OPCODE_24
...fork_Osaka-eof_test-opcode_OPCODE_25 OPCODE_25
...fork_Osaka-eof_test-opcode_OPCODE_26 OPCODE_26
...fork_Osaka-eof_test-opcode_OPCODE_27 OPCODE_27
...fork_Osaka-eof_test-opcode_OPCODE_28 OPCODE_28
...fork_Osaka-eof_test-opcode_OPCODE_29 OPCODE_29
...fork_Osaka-eof_test-opcode_OPCODE_2A OPCODE_2A
...fork_Osaka-eof_test-opcode_OPCODE_2B OPCODE_2B
...fork_Osaka-eof_test-opcode_OPCODE_2C OPCODE_2C
...fork_Osaka-eof_test-opcode_OPCODE_2D OPCODE_2D
...fork_Osaka-eof_test-opcode_OPCODE_2E OPCODE_2E
...fork_Osaka-eof_test-opcode_OPCODE_2F OPCODE_2F
...fork_Osaka-eof_test-opcode_ADDRESS ADDRESS
...fork_Osaka-eof_test-opcode_BALANCE BALANCE
...fork_Osaka-eof_test-opcode_ORIGIN ORIGIN
...fork_Osaka-eof_test-opcode_CALLER CALLER
...fork_Osaka-eof_test-opcode_CALLVALUE CALLVALUE
...fork_Osaka-eof_test-opcode_CALLDATALOAD CALLDATALOAD
...fork_Osaka-eof_test-opcode_CALLDATASIZE CALLDATASIZE
...fork_Osaka-eof_test-opcode_CALLDATACOPY CALLDATACOPY
...fork_Osaka-eof_test-opcode_CODESIZE CODESIZE
...fork_Osaka-eof_test-opcode_CODECOPY CODECOPY
...fork_Osaka-eof_test-opcode_GASPRICE GASPRICE
...fork_Osaka-eof_test-opcode_EXTCODESIZE EXTCODESIZE
...fork_Osaka-eof_test-opcode_EXTCODECOPY EXTCODECOPY
...fork_Osaka-eof_test-opcode_RETURNDATASIZE RETURNDATASIZE
...fork_Osaka-eof_test-opcode_RETURNDATACOPY RETURNDATACOPY
...fork_Osaka-eof_test-opcode_EXTCODEHASH EXTCODEHASH
...fork_Osaka-eof_test-opcode_BLOCKHASH BLOCKHASH
...fork_Osaka-eof_test-opcode_COINBASE COINBASE
...fork_Osaka-eof_test-opcode_TIMESTAMP TIMESTAMP
...fork_Osaka-eof_test-opcode_NUMBER NUMBER
...fork_Osaka-eof_test-opcode_PREVRANDAO PREVRANDAO
...fork_Osaka-eof_test-opcode_GASLIMIT GASLIMIT
...fork_Osaka-eof_test-opcode_CHAINID CHAINID
...fork_Osaka-eof_test-opcode_SELFBALANCE SELFBALANCE
...fork_Osaka-eof_test-opcode_BASEFEE BASEFEE
...fork_Osaka-eof_test-opcode_BLOBHASH BLOBHASH
...fork_Osaka-eof_test-opcode_BLOBBASEFEE BLOBBASEFEE
...fork_Osaka-eof_test-opcode_OPCODE_4B OPCODE_4B
...fork_Osaka-eof_test-opcode_OPCODE_4C OPCODE_4C
...fork_Osaka-eof_test-opcode_OPCODE_4D OPCODE_4D
...fork_Osaka-eof_test-opcode_OPCODE_4E OPCODE_4E
...fork_Osaka-eof_test-opcode_OPCODE_4F OPCODE_4F
...fork_Osaka-eof_test-opcode_POP POP
...fork_Osaka-eof_test-opcode_MLOAD MLOAD
...fork_Osaka-eof_test-opcode_MSTORE MSTORE
...fork_Osaka-eof_test-opcode_MSTORE8 MSTORE8
...fork_Osaka-eof_test-opcode_SLOAD SLOAD
...fork_Osaka-eof_test-opcode_SSTORE SSTORE
...fork_Osaka-eof_test-opcode_JUMP JUMP
...fork_Osaka-eof_test-opcode_JUMPI JUMPI
...fork_Osaka-eof_test-opcode_PC PC
...fork_Osaka-eof_test-opcode_MSIZE MSIZE
...fork_Osaka-eof_test-opcode_GAS GAS
...fork_Osaka-eof_test-opcode_JUMPDEST JUMPDEST
...fork_Osaka-eof_test-opcode_TLOAD TLOAD
...fork_Osaka-eof_test-opcode_TSTORE TSTORE
...fork_Osaka-eof_test-opcode_MCOPY MCOPY
...fork_Osaka-eof_test-opcode_PUSH0 PUSH0
...fork_Osaka-eof_test-opcode_PUSH1 PUSH1
...fork_Osaka-eof_test-opcode_PUSH2 PUSH2
...fork_Osaka-eof_test-opcode_PUSH3 PUSH3
...fork_Osaka-eof_test-opcode_PUSH4 PUSH4
...fork_Osaka-eof_test-opcode_PUSH5 PUSH5
...fork_Osaka-eof_test-opcode_PUSH6 PUSH6
...fork_Osaka-eof_test-opcode_PUSH7 PUSH7
...fork_Osaka-eof_test-opcode_PUSH8 PUSH8
...fork_Osaka-eof_test-opcode_PUSH9 PUSH9
...fork_Osaka-eof_test-opcode_PUSH10 PUSH10
...fork_Osaka-eof_test-opcode_PUSH11 PUSH11
...fork_Osaka-eof_test-opcode_PUSH12 PUSH12
...fork_Osaka-eof_test-opcode_PUSH13 PUSH13
...fork_Osaka-eof_test-opcode_PUSH14 PUSH14
...fork_Osaka-eof_test-opcode_PUSH15 PUSH15
...fork_Osaka-eof_test-opcode_PUSH16 PUSH16
...fork_Osaka-eof_test-opcode_PUSH17 PUSH17
...fork_Osaka-eof_test-opcode_PUSH18 PUSH18
...fork_Osaka-eof_test-opcode_PUSH19 PUSH19
...fork_Osaka-eof_test-opcode_PUSH20 PUSH20
...fork_Osaka-eof_test-opcode_PUSH21 PUSH21
...fork_Osaka-eof_test-opcode_PUSH22 PUSH22
...fork_Osaka-eof_test-opcode_PUSH23 PUSH23
...fork_Osaka-eof_test-opcode_PUSH24 PUSH24
...fork_Osaka-eof_test-opcode_PUSH25 PUSH25
...fork_Osaka-eof_test-opcode_PUSH26 PUSH26
...fork_Osaka-eof_test-opcode_PUSH27 PUSH27
...fork_Osaka-eof_test-opcode_PUSH28 PUSH28
...fork_Osaka-eof_test-opcode_PUSH29 PUSH29
...fork_Osaka-eof_test-opcode_PUSH30 PUSH30
...fork_Osaka-eof_test-opcode_PUSH31 PUSH31
...fork_Osaka-eof_test-opcode_PUSH32 PUSH32
...fork_Osaka-eof_test-opcode_DUP1 DUP1
...fork_Osaka-eof_test-opcode_DUP2 DUP2
...fork_Osaka-eof_test-opcode_DUP3 DUP3
...fork_Osaka-eof_test-opcode_DUP4 DUP4
...fork_Osaka-eof_test-opcode_DUP5 DUP5
...fork_Osaka-eof_test-opcode_DUP6 DUP6
...fork_Osaka-eof_test-opcode_DUP7 DUP7
...fork_Osaka-eof_test-opcode_DUP8 DUP8
...fork_Osaka-eof_test-opcode_DUP9 DUP9
...fork_Osaka-eof_test-opcode_DUP10 DUP10
...fork_Osaka-eof_test-opcode_DUP11 DUP11
...fork_Osaka-eof_test-opcode_DUP12 DUP12
...fork_Osaka-eof_test-opcode_DUP13 DUP13
...fork_Osaka-eof_test-opcode_DUP14 DUP14
...fork_Osaka-eof_test-opcode_DUP15 DUP15
...fork_Osaka-eof_test-opcode_DUP16 DUP16
...fork_Osaka-eof_test-opcode_SWAP1 SWAP1
...fork_Osaka-eof_test-opcode_SWAP2 SWAP2
...fork_Osaka-eof_test-opcode_SWAP3 SWAP3
...fork_Osaka-eof_test-opcode_SWAP4 SWAP4
...fork_Osaka-eof_test-opcode_SWAP5 SWAP5
...fork_Osaka-eof_test-opcode_SWAP6 SWAP6
...fork_Osaka-eof_test-opcode_SWAP7 SWAP7
...fork_Osaka-eof_test-opcode_SWAP8 SWAP8
...fork_Osaka-eof_test-opcode_SWAP9 SWAP9
...fork_Osaka-eof_test-opcode_SWAP10 SWAP10
...fork_Osaka-eof_test-opcode_SWAP11 SWAP11
...fork_Osaka-eof_test-opcode_SWAP12 SWAP12
...fork_Osaka-eof_test-opcode_SWAP13 SWAP13
...fork_Osaka-eof_test-opcode_SWAP14 SWAP14
...fork_Osaka-eof_test-opcode_SWAP15 SWAP15
...fork_Osaka-eof_test-opcode_SWAP16 SWAP16
...fork_Osaka-eof_test-opcode_LOG0 LOG0
...fork_Osaka-eof_test-opcode_LOG1 LOG1
...fork_Osaka-eof_test-opcode_LOG2 LOG2
...fork_Osaka-eof_test-opcode_LOG3 LOG3
...fork_Osaka-eof_test-opcode_LOG4 LOG4
...fork_Osaka-eof_test-opcode_OPCODE_A5 OPCODE_A5
...fork_Osaka-eof_test-opcode_OPCODE_A6 OPCODE_A6
...fork_Osaka-eof_test-opcode_OPCODE_A7 OPCODE_A7
...fork_Osaka-eof_test-opcode_OPCODE_A8 OPCODE_A8
...fork_Osaka-eof_test-opcode_OPCODE_A9 OPCODE_A9
...fork_Osaka-eof_test-opcode_OPCODE_AA OPCODE_AA
...fork_Osaka-eof_test-opcode_OPCODE_AB OPCODE_AB
...fork_Osaka-eof_test-opcode_OPCODE_AC OPCODE_AC
...fork_Osaka-eof_test-opcode_OPCODE_AD OPCODE_AD
...fork_Osaka-eof_test-opcode_OPCODE_AE OPCODE_AE
...fork_Osaka-eof_test-opcode_OPCODE_AF OPCODE_AF
...fork_Osaka-eof_test-opcode_OPCODE_B0 OPCODE_B0
...fork_Osaka-eof_test-opcode_OPCODE_B1 OPCODE_B1
...fork_Osaka-eof_test-opcode_OPCODE_B2 OPCODE_B2
...fork_Osaka-eof_test-opcode_OPCODE_B3 OPCODE_B3
...fork_Osaka-eof_test-opcode_OPCODE_B4 OPCODE_B4
...fork_Osaka-eof_test-opcode_OPCODE_B5 OPCODE_B5
...fork_Osaka-eof_test-opcode_OPCODE_B6 OPCODE_B6
...fork_Osaka-eof_test-opcode_OPCODE_B7 OPCODE_B7
...fork_Osaka-eof_test-opcode_OPCODE_B8 OPCODE_B8
...fork_Osaka-eof_test-opcode_OPCODE_B9 OPCODE_B9
...fork_Osaka-eof_test-opcode_OPCODE_BA OPCODE_BA
...fork_Osaka-eof_test-opcode_OPCODE_BB OPCODE_BB
...fork_Osaka-eof_test-opcode_OPCODE_BC OPCODE_BC
...fork_Osaka-eof_test-opcode_OPCODE_BD OPCODE_BD
...fork_Osaka-eof_test-opcode_OPCODE_BE OPCODE_BE
...fork_Osaka-eof_test-opcode_OPCODE_BF OPCODE_BF
...fork_Osaka-eof_test-opcode_OPCODE_C0 OPCODE_C0
...fork_Osaka-eof_test-opcode_OPCODE_C1 OPCODE_C1
...fork_Osaka-eof_test-opcode_OPCODE_C2 OPCODE_C2
...fork_Osaka-eof_test-opcode_OPCODE_C3 OPCODE_C3
...fork_Osaka-eof_test-opcode_OPCODE_C4 OPCODE_C4
...fork_Osaka-eof_test-opcode_OPCODE_C5 OPCODE_C5
...fork_Osaka-eof_test-opcode_OPCODE_C6 OPCODE_C6
...fork_Osaka-eof_test-opcode_OPCODE_C7 OPCODE_C7
...fork_Osaka-eof_test-opcode_OPCODE_C8 OPCODE_C8
...fork_Osaka-eof_test-opcode_OPCODE_C9 OPCODE_C9
...fork_Osaka-eof_test-opcode_OPCODE_CA OPCODE_CA
...fork_Osaka-eof_test-opcode_OPCODE_CB OPCODE_CB
...fork_Osaka-eof_test-opcode_OPCODE_CC OPCODE_CC
...fork_Osaka-eof_test-opcode_OPCODE_CD OPCODE_CD
...fork_Osaka-eof_test-opcode_OPCODE_CE OPCODE_CE
...fork_Osaka-eof_test-opcode_OPCODE_CF OPCODE_CF
...fork_Osaka-eof_test-opcode_DATALOAD DATALOAD
...fork_Osaka-eof_test-opcode_DATALOADN DATALOADN
...fork_Osaka-eof_test-opcode_DATASIZE DATASIZE
...fork_Osaka-eof_test-opcode_DATACOPY DATACOPY
...fork_Osaka-eof_test-opcode_OPCODE_D4 OPCODE_D4
...fork_Osaka-eof_test-opcode_OPCODE_D5 OPCODE_D5
...fork_Osaka-eof_test-opcode_OPCODE_D6 OPCODE_D6
...fork_Osaka-eof_test-opcode_OPCODE_D7 OPCODE_D7
...fork_Osaka-eof_test-opcode_OPCODE_D8 OPCODE_D8
...fork_Osaka-eof_test-opcode_OPCODE_D9 OPCODE_D9
...fork_Osaka-eof_test-opcode_OPCODE_DA OPCODE_DA
...fork_Osaka-eof_test-opcode_OPCODE_DB OPCODE_DB
...fork_Osaka-eof_test-opcode_OPCODE_DC OPCODE_DC
...fork_Osaka-eof_test-opcode_OPCODE_DD OPCODE_DD
...fork_Osaka-eof_test-opcode_OPCODE_DE OPCODE_DE
...fork_Osaka-eof_test-opcode_OPCODE_DF OPCODE_DF
...fork_Osaka-eof_test-opcode_RJUMP RJUMP
...fork_Osaka-eof_test-opcode_RJUMPI RJUMPI
...fork_Osaka-eof_test-opcode_RJUMPV RJUMPV
...fork_Osaka-eof_test-opcode_CALLF CALLF
...fork_Osaka-eof_test-opcode_JUMPF JUMPF
...fork_Osaka-eof_test-opcode_DUPN DUPN
...fork_Osaka-eof_test-opcode_SWAPN SWAPN
...fork_Osaka-eof_test-opcode_EXCHANGE EXCHANGE
...fork_Osaka-eof_test-opcode_OPCODE_E9 OPCODE_E9
...fork_Osaka-eof_test-opcode_OPCODE_EA OPCODE_EA
...fork_Osaka-eof_test-opcode_OPCODE_EB OPCODE_EB
...fork_Osaka-eof_test-opcode_EOFCREATE EOFCREATE
...fork_Osaka-eof_test-opcode_TXCREATE TXCREATE
...fork_Osaka-eof_test-opcode_RETURNCODE RETURNCODE
...fork_Osaka-eof_test-opcode_OPCODE_EF OPCODE_EF
...fork_Osaka-eof_test-opcode_CREATE CREATE
...fork_Osaka-eof_test-opcode_CALL CALL
...fork_Osaka-eof_test-opcode_CALLCODE CALLCODE
...fork_Osaka-eof_test-opcode_RETURN RETURN
...fork_Osaka-eof_test-opcode_DELEGATECALL DELEGATECALL
...fork_Osaka-eof_test-opcode_CREATE2 CREATE2
...fork_Osaka-eof_test-opcode_OPCODE_F6 OPCODE_F6
...fork_Osaka-eof_test-opcode_RETURNDATALOAD RETURNDATALOAD
...fork_Osaka-eof_test-opcode_EXTCALL EXTCALL
...fork_Osaka-eof_test-opcode_EXTDELEGATECALL EXTDELEGATECALL
...fork_Osaka-eof_test-opcode_STATICCALL STATICCALL
...fork_Osaka-eof_test-opcode_EXTSTATICCALL EXTSTATICCALL
...fork_Osaka-eof_test-opcode_OPCODE_FC OPCODE_FC
...fork_Osaka-eof_test-opcode_REVERT REVERT
...fork_Osaka-eof_test-opcode_INVALID INVALID
...fork_Osaka-eof_test-opcode_SELFDESTRUCT SELFDESTRUCT
...fork_Osaka-state_test_from_eof_test-opcode_STOP STOP
...fork_Osaka-state_test_from_eof_test-opcode_ADD ADD
...fork_Osaka-state_test_from_eof_test-opcode_MUL MUL
...fork_Osaka-state_test_from_eof_test-opcode_SUB SUB
...fork_Osaka-state_test_from_eof_test-opcode_DIV DIV
...fork_Osaka-state_test_from_eof_test-opcode_SDIV SDIV
...fork_Osaka-state_test_from_eof_test-opcode_MOD MOD
...fork_Osaka-state_test_from_eof_test-opcode_SMOD SMOD
...fork_Osaka-state_test_from_eof_test-opcode_ADDMOD ADDMOD
...fork_Osaka-state_test_from_eof_test-opcode_MULMOD MULMOD
...fork_Osaka-state_test_from_eof_test-opcode_EXP EXP
...fork_Osaka-state_test_from_eof_test-opcode_SIGNEXTEND SIGNEXTEND
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_0C OPCODE_0C
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_0D OPCODE_0D
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_0E OPCODE_0E
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_0F OPCODE_0F
...fork_Osaka-state_test_from_eof_test-opcode_LT LT
...fork_Osaka-state_test_from_eof_test-opcode_GT GT
...fork_Osaka-state_test_from_eof_test-opcode_SLT SLT
...fork_Osaka-state_test_from_eof_test-opcode_SGT SGT
...fork_Osaka-state_test_from_eof_test-opcode_EQ EQ
...fork_Osaka-state_test_from_eof_test-opcode_ISZERO ISZERO
...fork_Osaka-state_test_from_eof_test-opcode_AND AND
...fork_Osaka-state_test_from_eof_test-opcode_OR OR
...fork_Osaka-state_test_from_eof_test-opcode_XOR XOR
...fork_Osaka-state_test_from_eof_test-opcode_NOT NOT
...fork_Osaka-state_test_from_eof_test-opcode_BYTE BYTE
...fork_Osaka-state_test_from_eof_test-opcode_SHL SHL
...fork_Osaka-state_test_from_eof_test-opcode_SHR SHR
...fork_Osaka-state_test_from_eof_test-opcode_SAR SAR
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_1E OPCODE_1E
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_1F OPCODE_1F
...fork_Osaka-state_test_from_eof_test-opcode_SHA3 SHA3
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_21 OPCODE_21
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_22 OPCODE_22
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_23 OPCODE_23
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_24 OPCODE_24
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_25 OPCODE_25
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_26 OPCODE_26
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_27 OPCODE_27
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_28 OPCODE_28
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_29 OPCODE_29
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2A OPCODE_2A
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2B OPCODE_2B
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2C OPCODE_2C
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2D OPCODE_2D
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2E OPCODE_2E
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_2F OPCODE_2F
...fork_Osaka-state_test_from_eof_test-opcode_ADDRESS ADDRESS
...fork_Osaka-state_test_from_eof_test-opcode_BALANCE BALANCE
...fork_Osaka-state_test_from_eof_test-opcode_ORIGIN ORIGIN
...fork_Osaka-state_test_from_eof_test-opcode_CALLER CALLER
...fork_Osaka-state_test_from_eof_test-opcode_CALLVALUE CALLVALUE
...fork_Osaka-state_test_from_eof_test-opcode_CALLDATALOAD CALLDATALOAD
...fork_Osaka-state_test_from_eof_test-opcode_CALLDATASIZE CALLDATASIZE
...fork_Osaka-state_test_from_eof_test-opcode_CALLDATACOPY CALLDATACOPY
...fork_Osaka-state_test_from_eof_test-opcode_CODESIZE CODESIZE
...fork_Osaka-state_test_from_eof_test-opcode_CODECOPY CODECOPY
...fork_Osaka-state_test_from_eof_test-opcode_GASPRICE GASPRICE
...fork_Osaka-state_test_from_eof_test-opcode_EXTCODESIZE EXTCODESIZE
...fork_Osaka-state_test_from_eof_test-opcode_EXTCODECOPY EXTCODECOPY
...fork_Osaka-state_test_from_eof_test-opcode_RETURNDATASIZE RETURNDATASIZE
...fork_Osaka-state_test_from_eof_test-opcode_RETURNDATACOPY RETURNDATACOPY
...fork_Osaka-state_test_from_eof_test-opcode_EXTCODEHASH EXTCODEHASH
...fork_Osaka-state_test_from_eof_test-opcode_BLOCKHASH BLOCKHASH
...fork_Osaka-state_test_from_eof_test-opcode_COINBASE COINBASE
...fork_Osaka-state_test_from_eof_test-opcode_TIMESTAMP TIMESTAMP
...fork_Osaka-state_test_from_eof_test-opcode_NUMBER NUMBER
...fork_Osaka-state_test_from_eof_test-opcode_PREVRANDAO PREVRANDAO
...fork_Osaka-state_test_from_eof_test-opcode_GASLIMIT GASLIMIT
...fork_Osaka-state_test_from_eof_test-opcode_CHAINID CHAINID
...fork_Osaka-state_test_from_eof_test-opcode_SELFBALANCE SELFBALANCE
...fork_Osaka-state_test_from_eof_test-opcode_BASEFEE BASEFEE
...fork_Osaka-state_test_from_eof_test-opcode_BLOBHASH BLOBHASH
...fork_Osaka-state_test_from_eof_test-opcode_BLOBBASEFEE BLOBBASEFEE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_4B OPCODE_4B
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_4C OPCODE_4C
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_4D OPCODE_4D
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_4E OPCODE_4E
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_4F OPCODE_4F
...fork_Osaka-state_test_from_eof_test-opcode_POP POP
...fork_Osaka-state_test_from_eof_test-opcode_MLOAD MLOAD
...fork_Osaka-state_test_from_eof_test-opcode_MSTORE MSTORE
...fork_Osaka-state_test_from_eof_test-opcode_MSTORE8 MSTORE8
...fork_Osaka-state_test_from_eof_test-opcode_SLOAD SLOAD
...fork_Osaka-state_test_from_eof_test-opcode_SSTORE SSTORE
...fork_Osaka-state_test_from_eof_test-opcode_JUMP JUMP
...fork_Osaka-state_test_from_eof_test-opcode_JUMPI JUMPI
...fork_Osaka-state_test_from_eof_test-opcode_PC PC
...fork_Osaka-state_test_from_eof_test-opcode_MSIZE MSIZE
...fork_Osaka-state_test_from_eof_test-opcode_GAS GAS
...fork_Osaka-state_test_from_eof_test-opcode_JUMPDEST JUMPDEST
...fork_Osaka-state_test_from_eof_test-opcode_TLOAD TLOAD
...fork_Osaka-state_test_from_eof_test-opcode_TSTORE TSTORE
...fork_Osaka-state_test_from_eof_test-opcode_MCOPY MCOPY
...fork_Osaka-state_test_from_eof_test-opcode_PUSH0 PUSH0
...fork_Osaka-state_test_from_eof_test-opcode_PUSH1 PUSH1
...fork_Osaka-state_test_from_eof_test-opcode_PUSH2 PUSH2
...fork_Osaka-state_test_from_eof_test-opcode_PUSH3 PUSH3
...fork_Osaka-state_test_from_eof_test-opcode_PUSH4 PUSH4
...fork_Osaka-state_test_from_eof_test-opcode_PUSH5 PUSH5
...fork_Osaka-state_test_from_eof_test-opcode_PUSH6 PUSH6
...fork_Osaka-state_test_from_eof_test-opcode_PUSH7 PUSH7
...fork_Osaka-state_test_from_eof_test-opcode_PUSH8 PUSH8
...fork_Osaka-state_test_from_eof_test-opcode_PUSH9 PUSH9
...fork_Osaka-state_test_from_eof_test-opcode_PUSH10 PUSH10
...fork_Osaka-state_test_from_eof_test-opcode_PUSH11 PUSH11
...fork_Osaka-state_test_from_eof_test-opcode_PUSH12 PUSH12
...fork_Osaka-state_test_from_eof_test-opcode_PUSH13 PUSH13
...fork_Osaka-state_test_from_eof_test-opcode_PUSH14 PUSH14
...fork_Osaka-state_test_from_eof_test-opcode_PUSH15 PUSH15
...fork_Osaka-state_test_from_eof_test-opcode_PUSH16 PUSH16
...fork_Osaka-state_test_from_eof_test-opcode_PUSH17 PUSH17
...fork_Osaka-state_test_from_eof_test-opcode_PUSH18 PUSH18
...fork_Osaka-state_test_from_eof_test-opcode_PUSH19 PUSH19
...fork_Osaka-state_test_from_eof_test-opcode_PUSH20 PUSH20
...fork_Osaka-state_test_from_eof_test-opcode_PUSH21 PUSH21
...fork_Osaka-state_test_from_eof_test-opcode_PUSH22 PUSH22
...fork_Osaka-state_test_from_eof_test-opcode_PUSH23 PUSH23
...fork_Osaka-state_test_from_eof_test-opcode_PUSH24 PUSH24
...fork_Osaka-state_test_from_eof_test-opcode_PUSH25 PUSH25
...fork_Osaka-state_test_from_eof_test-opcode_PUSH26 PUSH26
...fork_Osaka-state_test_from_eof_test-opcode_PUSH27 PUSH27
...fork_Osaka-state_test_from_eof_test-opcode_PUSH28 PUSH28
...fork_Osaka-state_test_from_eof_test-opcode_PUSH29 PUSH29
...fork_Osaka-state_test_from_eof_test-opcode_PUSH30 PUSH30
...fork_Osaka-state_test_from_eof_test-opcode_PUSH31 PUSH31
...fork_Osaka-state_test_from_eof_test-opcode_PUSH32 PUSH32
...fork_Osaka-state_test_from_eof_test-opcode_DUP1 DUP1
...fork_Osaka-state_test_from_eof_test-opcode_DUP2 DUP2
...fork_Osaka-state_test_from_eof_test-opcode_DUP3 DUP3
...fork_Osaka-state_test_from_eof_test-opcode_DUP4 DUP4
...fork_Osaka-state_test_from_eof_test-opcode_DUP5 DUP5
...fork_Osaka-state_test_from_eof_test-opcode_DUP6 DUP6
...fork_Osaka-state_test_from_eof_test-opcode_DUP7 DUP7
...fork_Osaka-state_test_from_eof_test-opcode_DUP8 DUP8
...fork_Osaka-state_test_from_eof_test-opcode_DUP9 DUP9
...fork_Osaka-state_test_from_eof_test-opcode_DUP10 DUP10
...fork_Osaka-state_test_from_eof_test-opcode_DUP11 DUP11
...fork_Osaka-state_test_from_eof_test-opcode_DUP12 DUP12
...fork_Osaka-state_test_from_eof_test-opcode_DUP13 DUP13
...fork_Osaka-state_test_from_eof_test-opcode_DUP14 DUP14
...fork_Osaka-state_test_from_eof_test-opcode_DUP15 DUP15
...fork_Osaka-state_test_from_eof_test-opcode_DUP16 DUP16
...fork_Osaka-state_test_from_eof_test-opcode_SWAP1 SWAP1
...fork_Osaka-state_test_from_eof_test-opcode_SWAP2 SWAP2
...fork_Osaka-state_test_from_eof_test-opcode_SWAP3 SWAP3
...fork_Osaka-state_test_from_eof_test-opcode_SWAP4 SWAP4
...fork_Osaka-state_test_from_eof_test-opcode_SWAP5 SWAP5
...fork_Osaka-state_test_from_eof_test-opcode_SWAP6 SWAP6
...fork_Osaka-state_test_from_eof_test-opcode_SWAP7 SWAP7
...fork_Osaka-state_test_from_eof_test-opcode_SWAP8 SWAP8
...fork_Osaka-state_test_from_eof_test-opcode_SWAP9 SWAP9
...fork_Osaka-state_test_from_eof_test-opcode_SWAP10 SWAP10
...fork_Osaka-state_test_from_eof_test-opcode_SWAP11 SWAP11
...fork_Osaka-state_test_from_eof_test-opcode_SWAP12 SWAP12
...fork_Osaka-state_test_from_eof_test-opcode_SWAP13 SWAP13
...fork_Osaka-state_test_from_eof_test-opcode_SWAP14 SWAP14
...fork_Osaka-state_test_from_eof_test-opcode_SWAP15 SWAP15
...fork_Osaka-state_test_from_eof_test-opcode_SWAP16 SWAP16
...fork_Osaka-state_test_from_eof_test-opcode_LOG0 LOG0
...fork_Osaka-state_test_from_eof_test-opcode_LOG1 LOG1
...fork_Osaka-state_test_from_eof_test-opcode_LOG2 LOG2
...fork_Osaka-state_test_from_eof_test-opcode_LOG3 LOG3
...fork_Osaka-state_test_from_eof_test-opcode_LOG4 LOG4
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_A5 OPCODE_A5
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_A6 OPCODE_A6
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_A7 OPCODE_A7
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_A8 OPCODE_A8
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_A9 OPCODE_A9
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AA OPCODE_AA
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AB OPCODE_AB
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AC OPCODE_AC
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AD OPCODE_AD
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AE OPCODE_AE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_AF OPCODE_AF
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B0 OPCODE_B0
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B1 OPCODE_B1
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B2 OPCODE_B2
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B3 OPCODE_B3
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B4 OPCODE_B4
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B5 OPCODE_B5
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B6 OPCODE_B6
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B7 OPCODE_B7
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B8 OPCODE_B8
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_B9 OPCODE_B9
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BA OPCODE_BA
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BB OPCODE_BB
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BC OPCODE_BC
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BD OPCODE_BD
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BE OPCODE_BE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_BF OPCODE_BF
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C0 OPCODE_C0
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C1 OPCODE_C1
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C2 OPCODE_C2
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C3 OPCODE_C3
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C4 OPCODE_C4
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C5 OPCODE_C5
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C6 OPCODE_C6
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C7 OPCODE_C7
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C8 OPCODE_C8
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_C9 OPCODE_C9
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CA OPCODE_CA
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CB OPCODE_CB
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CC OPCODE_CC
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CD OPCODE_CD
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CE OPCODE_CE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_CF OPCODE_CF
...fork_Osaka-state_test_from_eof_test-opcode_DATALOAD DATALOAD
...fork_Osaka-state_test_from_eof_test-opcode_DATALOADN DATALOADN
...fork_Osaka-state_test_from_eof_test-opcode_DATASIZE DATASIZE
...fork_Osaka-state_test_from_eof_test-opcode_DATACOPY DATACOPY
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D4 OPCODE_D4
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D5 OPCODE_D5
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D6 OPCODE_D6
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D7 OPCODE_D7
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D8 OPCODE_D8
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_D9 OPCODE_D9
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DA OPCODE_DA
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DB OPCODE_DB
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DC OPCODE_DC
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DD OPCODE_DD
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DE OPCODE_DE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_DF OPCODE_DF
...fork_Osaka-state_test_from_eof_test-opcode_RJUMP RJUMP
...fork_Osaka-state_test_from_eof_test-opcode_RJUMPI RJUMPI
...fork_Osaka-state_test_from_eof_test-opcode_RJUMPV RJUMPV
...fork_Osaka-state_test_from_eof_test-opcode_CALLF CALLF
...fork_Osaka-state_test_from_eof_test-opcode_JUMPF JUMPF
...fork_Osaka-state_test_from_eof_test-opcode_DUPN DUPN
...fork_Osaka-state_test_from_eof_test-opcode_SWAPN SWAPN
...fork_Osaka-state_test_from_eof_test-opcode_EXCHANGE EXCHANGE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_E9 OPCODE_E9
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_EA OPCODE_EA
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_EB OPCODE_EB
...fork_Osaka-state_test_from_eof_test-opcode_EOFCREATE EOFCREATE
...fork_Osaka-state_test_from_eof_test-opcode_TXCREATE TXCREATE
...fork_Osaka-state_test_from_eof_test-opcode_RETURNCODE RETURNCODE
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_EF OPCODE_EF
...fork_Osaka-state_test_from_eof_test-opcode_CREATE CREATE
...fork_Osaka-state_test_from_eof_test-opcode_CALL CALL
...fork_Osaka-state_test_from_eof_test-opcode_CALLCODE CALLCODE
...fork_Osaka-state_test_from_eof_test-opcode_RETURN RETURN
...fork_Osaka-state_test_from_eof_test-opcode_DELEGATECALL DELEGATECALL
...fork_Osaka-state_test_from_eof_test-opcode_CREATE2 CREATE2
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_F6 OPCODE_F6
...fork_Osaka-state_test_from_eof_test-opcode_RETURNDATALOAD RETURNDATALOAD
...fork_Osaka-state_test_from_eof_test-opcode_EXTCALL EXTCALL
...fork_Osaka-state_test_from_eof_test-opcode_EXTDELEGATECALL EXTDELEGATECALL
...fork_Osaka-state_test_from_eof_test-opcode_STATICCALL STATICCALL
...fork_Osaka-state_test_from_eof_test-opcode_EXTSTATICCALL EXTSTATICCALL
...fork_Osaka-state_test_from_eof_test-opcode_OPCODE_FC OPCODE_FC
...fork_Osaka-state_test_from_eof_test-opcode_REVERT REVERT
...fork_Osaka-state_test_from_eof_test-opcode_INVALID INVALID
...fork_Osaka-state_test_from_eof_test-opcode_SELFDESTRUCT SELFDESTRUCT
...fork_Osaka-blockchain_test_from_eof_test-opcode_STOP STOP
...fork_Osaka-blockchain_test_from_eof_test-opcode_ADD ADD
...fork_Osaka-blockchain_test_from_eof_test-opcode_MUL MUL
...fork_Osaka-blockchain_test_from_eof_test-opcode_SUB SUB
...fork_Osaka-blockchain_test_from_eof_test-opcode_DIV DIV
...fork_Osaka-blockchain_test_from_eof_test-opcode_SDIV SDIV
...fork_Osaka-blockchain_test_from_eof_test-opcode_MOD MOD
...fork_Osaka-blockchain_test_from_eof_test-opcode_SMOD SMOD
...fork_Osaka-blockchain_test_from_eof_test-opcode_ADDMOD ADDMOD
...fork_Osaka-blockchain_test_from_eof_test-opcode_MULMOD MULMOD
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXP EXP
...fork_Osaka-blockchain_test_from_eof_test-opcode_SIGNEXTEND SIGNEXTEND
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_0C OPCODE_0C
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_0D OPCODE_0D
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_0E OPCODE_0E
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_0F OPCODE_0F
...fork_Osaka-blockchain_test_from_eof_test-opcode_LT LT
...fork_Osaka-blockchain_test_from_eof_test-opcode_GT GT
...fork_Osaka-blockchain_test_from_eof_test-opcode_SLT SLT
...fork_Osaka-blockchain_test_from_eof_test-opcode_SGT SGT
...fork_Osaka-blockchain_test_from_eof_test-opcode_EQ EQ
...fork_Osaka-blockchain_test_from_eof_test-opcode_ISZERO ISZERO
...fork_Osaka-blockchain_test_from_eof_test-opcode_AND AND
...fork_Osaka-blockchain_test_from_eof_test-opcode_OR OR
...fork_Osaka-blockchain_test_from_eof_test-opcode_XOR XOR
...fork_Osaka-blockchain_test_from_eof_test-opcode_NOT NOT
...fork_Osaka-blockchain_test_from_eof_test-opcode_BYTE BYTE
...fork_Osaka-blockchain_test_from_eof_test-opcode_SHL SHL
...fork_Osaka-blockchain_test_from_eof_test-opcode_SHR SHR
...fork_Osaka-blockchain_test_from_eof_test-opcode_SAR SAR
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_1E OPCODE_1E
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_1F OPCODE_1F
...fork_Osaka-blockchain_test_from_eof_test-opcode_SHA3 SHA3
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_21 OPCODE_21
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_22 OPCODE_22
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_23 OPCODE_23
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_24 OPCODE_24
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_25 OPCODE_25
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_26 OPCODE_26
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_27 OPCODE_27
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_28 OPCODE_28
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_29 OPCODE_29
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2A OPCODE_2A
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2B OPCODE_2B
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2C OPCODE_2C
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2D OPCODE_2D
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2E OPCODE_2E
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_2F OPCODE_2F
...fork_Osaka-blockchain_test_from_eof_test-opcode_ADDRESS ADDRESS
...fork_Osaka-blockchain_test_from_eof_test-opcode_BALANCE BALANCE
...fork_Osaka-blockchain_test_from_eof_test-opcode_ORIGIN ORIGIN
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLER CALLER
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLVALUE CALLVALUE
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLDATALOAD CALLDATALOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLDATASIZE CALLDATASIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLDATACOPY CALLDATACOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_CODESIZE CODESIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_CODECOPY CODECOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_GASPRICE GASPRICE
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTCODESIZE EXTCODESIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTCODECOPY EXTCODECOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_RETURNDATASIZE RETURNDATASIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_RETURNDATACOPY RETURNDATACOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTCODEHASH EXTCODEHASH
...fork_Osaka-blockchain_test_from_eof_test-opcode_BLOCKHASH BLOCKHASH
...fork_Osaka-blockchain_test_from_eof_test-opcode_COINBASE COINBASE
...fork_Osaka-blockchain_test_from_eof_test-opcode_TIMESTAMP TIMESTAMP
...fork_Osaka-blockchain_test_from_eof_test-opcode_NUMBER NUMBER
...fork_Osaka-blockchain_test_from_eof_test-opcode_PREVRANDAO PREVRANDAO
...fork_Osaka-blockchain_test_from_eof_test-opcode_GASLIMIT GASLIMIT
...fork_Osaka-blockchain_test_from_eof_test-opcode_CHAINID CHAINID
...fork_Osaka-blockchain_test_from_eof_test-opcode_SELFBALANCE SELFBALANCE
...fork_Osaka-blockchain_test_from_eof_test-opcode_BASEFEE BASEFEE
...fork_Osaka-blockchain_test_from_eof_test-opcode_BLOBHASH BLOBHASH
...fork_Osaka-blockchain_test_from_eof_test-opcode_BLOBBASEFEE BLOBBASEFEE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_4B OPCODE_4B
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_4C OPCODE_4C
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_4D OPCODE_4D
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_4E OPCODE_4E
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_4F OPCODE_4F
...fork_Osaka-blockchain_test_from_eof_test-opcode_POP POP
...fork_Osaka-blockchain_test_from_eof_test-opcode_MLOAD MLOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_MSTORE MSTORE
...fork_Osaka-blockchain_test_from_eof_test-opcode_MSTORE8 MSTORE8
...fork_Osaka-blockchain_test_from_eof_test-opcode_SLOAD SLOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_SSTORE SSTORE
...fork_Osaka-blockchain_test_from_eof_test-opcode_JUMP JUMP
...fork_Osaka-blockchain_test_from_eof_test-opcode_JUMPI JUMPI
...fork_Osaka-blockchain_test_from_eof_test-opcode_PC PC
...fork_Osaka-blockchain_test_from_eof_test-opcode_MSIZE MSIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_GAS GAS
...fork_Osaka-blockchain_test_from_eof_test-opcode_JUMPDEST JUMPDEST
...fork_Osaka-blockchain_test_from_eof_test-opcode_TLOAD TLOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_TSTORE TSTORE
...fork_Osaka-blockchain_test_from_eof_test-opcode_MCOPY MCOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH0 PUSH0
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH1 PUSH1
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH2 PUSH2
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH3 PUSH3
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH4 PUSH4
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH5 PUSH5
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH6 PUSH6
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH7 PUSH7
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH8 PUSH8
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH9 PUSH9
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH10 PUSH10
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH11 PUSH11
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH12 PUSH12
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH13 PUSH13
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH14 PUSH14
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH15 PUSH15
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH16 PUSH16
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH17 PUSH17
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH18 PUSH18
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH19 PUSH19
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH20 PUSH20
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH21 PUSH21
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH22 PUSH22
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH23 PUSH23
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH24 PUSH24
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH25 PUSH25
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH26 PUSH26
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH27 PUSH27
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH28 PUSH28
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH29 PUSH29
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH30 PUSH30
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH31 PUSH31
...fork_Osaka-blockchain_test_from_eof_test-opcode_PUSH32 PUSH32
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP1 DUP1
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP2 DUP2
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP3 DUP3
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP4 DUP4
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP5 DUP5
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP6 DUP6
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP7 DUP7
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP8 DUP8
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP9 DUP9
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP10 DUP10
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP11 DUP11
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP12 DUP12
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP13 DUP13
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP14 DUP14
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP15 DUP15
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUP16 DUP16
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP1 SWAP1
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP2 SWAP2
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP3 SWAP3
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP4 SWAP4
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP5 SWAP5
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP6 SWAP6
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP7 SWAP7
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP8 SWAP8
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP9 SWAP9
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP10 SWAP10
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP11 SWAP11
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP12 SWAP12
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP13 SWAP13
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP14 SWAP14
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP15 SWAP15
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAP16 SWAP16
...fork_Osaka-blockchain_test_from_eof_test-opcode_LOG0 LOG0
...fork_Osaka-blockchain_test_from_eof_test-opcode_LOG1 LOG1
...fork_Osaka-blockchain_test_from_eof_test-opcode_LOG2 LOG2
...fork_Osaka-blockchain_test_from_eof_test-opcode_LOG3 LOG3
...fork_Osaka-blockchain_test_from_eof_test-opcode_LOG4 LOG4
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_A5 OPCODE_A5
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_A6 OPCODE_A6
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_A7 OPCODE_A7
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_A8 OPCODE_A8
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_A9 OPCODE_A9
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AA OPCODE_AA
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AB OPCODE_AB
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AC OPCODE_AC
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AD OPCODE_AD
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AE OPCODE_AE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_AF OPCODE_AF
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B0 OPCODE_B0
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B1 OPCODE_B1
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B2 OPCODE_B2
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B3 OPCODE_B3
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B4 OPCODE_B4
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B5 OPCODE_B5
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B6 OPCODE_B6
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B7 OPCODE_B7
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B8 OPCODE_B8
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_B9 OPCODE_B9
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BA OPCODE_BA
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BB OPCODE_BB
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BC OPCODE_BC
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BD OPCODE_BD
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BE OPCODE_BE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_BF OPCODE_BF
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C0 OPCODE_C0
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C1 OPCODE_C1
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C2 OPCODE_C2
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C3 OPCODE_C3
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C4 OPCODE_C4
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C5 OPCODE_C5
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C6 OPCODE_C6
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C7 OPCODE_C7
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C8 OPCODE_C8
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_C9 OPCODE_C9
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CA OPCODE_CA
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CB OPCODE_CB
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CC OPCODE_CC
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CD OPCODE_CD
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CE OPCODE_CE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_CF OPCODE_CF
...fork_Osaka-blockchain_test_from_eof_test-opcode_DATALOAD DATALOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_DATALOADN DATALOADN
...fork_Osaka-blockchain_test_from_eof_test-opcode_DATASIZE DATASIZE
...fork_Osaka-blockchain_test_from_eof_test-opcode_DATACOPY DATACOPY
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D4 OPCODE_D4
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D5 OPCODE_D5
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D6 OPCODE_D6
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D7 OPCODE_D7
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D8 OPCODE_D8
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_D9 OPCODE_D9
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DA OPCODE_DA
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DB OPCODE_DB
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DC OPCODE_DC
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DD OPCODE_DD
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DE OPCODE_DE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_DF OPCODE_DF
...fork_Osaka-blockchain_test_from_eof_test-opcode_RJUMP RJUMP
...fork_Osaka-blockchain_test_from_eof_test-opcode_RJUMPI RJUMPI
...fork_Osaka-blockchain_test_from_eof_test-opcode_RJUMPV RJUMPV
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLF CALLF
...fork_Osaka-blockchain_test_from_eof_test-opcode_JUMPF JUMPF
...fork_Osaka-blockchain_test_from_eof_test-opcode_DUPN DUPN
...fork_Osaka-blockchain_test_from_eof_test-opcode_SWAPN SWAPN
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXCHANGE EXCHANGE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_E9 OPCODE_E9
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_EA OPCODE_EA
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_EB OPCODE_EB
...fork_Osaka-blockchain_test_from_eof_test-opcode_EOFCREATE EOFCREATE
...fork_Osaka-blockchain_test_from_eof_test-opcode_TXCREATE TXCREATE
...fork_Osaka-blockchain_test_from_eof_test-opcode_RETURNCODE RETURNCODE
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_EF OPCODE_EF
...fork_Osaka-blockchain_test_from_eof_test-opcode_CREATE CREATE
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALL CALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_CALLCODE CALLCODE
...fork_Osaka-blockchain_test_from_eof_test-opcode_RETURN RETURN
...fork_Osaka-blockchain_test_from_eof_test-opcode_DELEGATECALL DELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_CREATE2 CREATE2
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_F6 OPCODE_F6
...fork_Osaka-blockchain_test_from_eof_test-opcode_RETURNDATALOAD RETURNDATALOAD
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTCALL EXTCALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTDELEGATECALL EXTDELEGATECALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_STATICCALL STATICCALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_EXTSTATICCALL EXTSTATICCALL
...fork_Osaka-blockchain_test_from_eof_test-opcode_OPCODE_FC OPCODE_FC
...fork_Osaka-blockchain_test_from_eof_test-opcode_REVERT REVERT
...fork_Osaka-blockchain_test_from_eof_test-opcode_INVALID INVALID
...fork_Osaka-blockchain_test_from_eof_test-opcode_SELFDESTRUCT SELFDESTRUCT