From 669bce58113fa350efca7d2f165fa8a0c096c48f Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 15 Feb 2024 11:20:12 +0100 Subject: [PATCH 1/3] Tezt: Remove Nairobi from protocols --- .../testnet_experiment_tools.ml | 7 +----- tezt/lib_tezos/constant.ml | 8 +++++++ tezt/lib_tezos/protocol.ml | 22 +++++-------------- tezt/lib_tezos/protocol.mli | 2 +- 4 files changed, 16 insertions(+), 23 deletions(-) diff --git a/devtools/testnet_experiment_tools/testnet_experiment_tools.ml b/devtools/testnet_experiment_tools/testnet_experiment_tools.ml index 84efbf680160..dae921fca72d 100644 --- a/devtools/testnet_experiment_tools/testnet_experiment_tools.ml +++ b/devtools/testnet_experiment_tools/testnet_experiment_tools.ml @@ -95,11 +95,6 @@ let protocol_alpha_parameters_template = let network_activation_parameters_templates protocol_hash = match protocol_hash with - | Tezt_tezos.Protocol.Nairobi -> - Some - (Filename.concat - network_parameters_templates_dir - "proto_017_PtNairob_mainnet.json") | Tezt_tezos.Protocol.Oxford -> Some (Filename.concat @@ -378,7 +373,7 @@ let () = ~__FILE__ ~title:"Generate Network Activation Parameters" ~tags:["generate_activation_parameters"] - (Local.generate_network_activation_parameters Protocol.Nairobi) ; + (Local.generate_network_activation_parameters Protocol.Oxford) ; register ~__FILE__ ~title:"Partition bakers by node" diff --git a/tezt/lib_tezos/constant.ml b/tezt/lib_tezos/constant.ml index 5b4b8d12c33e..d7d56cff09c4 100644 --- a/tezt/lib_tezos/constant.ml +++ b/tezt/lib_tezos/constant.ml @@ -73,6 +73,14 @@ let smart_rollup_installer = let _octez_smart_rollup_wasm_debugger = Uses.make ~tag:"wasm_debugger" ~path:"./octez-smart-rollup-wasm-debugger" +(* To be removed after Nairobi is frozen *) +let _octez_accuser_PtNairob = + Uses.make ~tag:"accuser_ptnairob" ~path:"./octez-accuser-PtNairob" + +(* To be removed after Nairobi is frozen *) +let _octez_baker_PtNairob = + Uses.make ~tag:"baker_ptnairob" ~path:"./octez-baker-PtNairob" + module WASM = struct let dal_echo_kernel = Uses.make ~tag:"dal_echo_kernel" ~path:"dal_echo_kernel.wasm" diff --git a/tezt/lib_tezos/protocol.ml b/tezt/lib_tezos/protocol.ml index 962a2134af81..cf1eec3a6cf6 100644 --- a/tezt/lib_tezos/protocol.ml +++ b/tezt/lib_tezos/protocol.ml @@ -25,13 +25,11 @@ (*****************************************************************************) (* Declaration order must respect the version order. *) -type t = Nairobi | Oxford | Alpha +type t = Oxford | Alpha -let all = [Nairobi; Oxford; Alpha] +let all = [Oxford; Alpha] -let encoding = - Data_encoding.string_enum - [("nairobi", Nairobi); ("oxford", Oxford); ("alpha", Alpha)] +let encoding = Data_encoding.string_enum [("oxford", Oxford); ("alpha", Alpha)] type constants = | Constants_sandbox @@ -45,17 +43,13 @@ let constants_to_string = function | Constants_mainnet_with_chain_id -> "mainnet-with-chain-id" | Constants_test -> "test" -let name = function - | Alpha -> "Alpha" - | Oxford -> "Oxford" - | Nairobi -> "Nairobi" +let name = function Alpha -> "Alpha" | Oxford -> "Oxford" -let number = function Nairobi -> 017 | Oxford -> 018 | Alpha -> 019 +let number = function Oxford -> 018 | Alpha -> 019 let directory = function | Alpha -> "proto_alpha" | Oxford -> "proto_018_Proxford" - | Nairobi -> "proto_017_PtNairob" (* Test tags must be lowercase. *) let tag protocol = String.lowercase_ascii (name protocol) @@ -63,7 +57,6 @@ let tag protocol = String.lowercase_ascii (name protocol) let hash = function | Alpha -> "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK" | Oxford -> "ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH" - | Nairobi -> "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf" let genesis_hash = "ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" @@ -272,10 +265,7 @@ let write_parameter_file : JSON.encode_to_file_u output_file parameters ; Lwt.return output_file -let previous_protocol = function - | Alpha -> Some Oxford - | Oxford -> Some Nairobi - | Nairobi -> None +let previous_protocol = function Alpha -> Some Oxford | Oxford -> None let has_predecessor p = previous_protocol p <> None diff --git a/tezt/lib_tezos/protocol.mli b/tezt/lib_tezos/protocol.mli index 473c0fe45258..e050f4f7f3d6 100644 --- a/tezt/lib_tezos/protocol.mli +++ b/tezt/lib_tezos/protocol.mli @@ -24,7 +24,7 @@ (*****************************************************************************) (** Protocols we may want to test with. *) -type t = Nairobi | Oxford | Alpha +type t = Oxford | Alpha val encoding : t Data_encoding.t -- GitLab From 4a7e271bd9647fa587083f32d7780a204dde9357 Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 15 Feb 2024 11:20:32 +0100 Subject: [PATCH 2/3] Tezt: Remove Nairobi from tests --- tezt/tests/RPC_test.ml | 1 - tezt/tests/baking.ml | 1 - tezt/tests/contract_typecheck_contract.ml | 7 ++-- tezt/tests/dac.ml | 1 - tezt/tests/double_consensus.ml | 8 ----- tezt/tests/light.ml | 2 +- tezt/tests/main.ml | 4 +-- tezt/tests/manager_operations.ml | 2 +- tezt/tests/mockup.ml | 29 ++++++---------- tezt/tests/prevalidator.ml | 1 - tezt/tests/proxy.ml | 6 ++-- tezt/tests/proxy_server_test.ml | 2 +- tezt/tests/sc_rollup.ml | 42 +---------------------- tezt/tests/script_annotations.ml | 7 ++-- tezt/tests/script_illtyped.ml | 30 +--------------- tezt/tests/storage_snapshots.ml | 2 +- tezt/tests/timelock.ml | 1 - 17 files changed, 24 insertions(+), 122 deletions(-) diff --git a/tezt/tests/RPC_test.ml b/tezt/tests/RPC_test.ml index 8ace061ee07e..ad6c576f8926 100644 --- a/tezt/tests/RPC_test.ml +++ b/tezt/tests/RPC_test.ml @@ -1673,7 +1673,6 @@ let register protocols = ~parameter_overrides:consensus_threshold ; check_rpc_regression "adaptive_issuance" - ~supports:Protocol.(From_protocol (number Nairobi + 1)) ~test_function:test_adaptive_issuance ; check_rpc_regression "votes" diff --git a/tezt/tests/baking.ml b/tezt/tests/baking.ml index be96a39a6170..5a58bbf70f48 100644 --- a/tezt/tests/baking.ml +++ b/tezt/tests/baking.ml @@ -716,7 +716,6 @@ let test_operation_pool_ordering block with the given [minimal_timestamp] flag. *) let baking_with_given_minimal_timestamp ~minimal_timestamp = Protocol.register_test - ~supports:Protocol.(From_protocol (number Nairobi)) ~__FILE__ ~title:(sf "Baking minimal timestamp (%b)" minimal_timestamp) ~tags:["baking"; "timestamp"] diff --git a/tezt/tests/contract_typecheck_contract.ml b/tezt/tests/contract_typecheck_contract.ml index e4431f4f4344..4dc9df75c4a6 100644 --- a/tezt/tests/contract_typecheck_contract.ml +++ b/tezt/tests/contract_typecheck_contract.ml @@ -188,11 +188,8 @@ let test_implicit = let* () = check_contract_ok client tz1 None "ticket string" in let no_entrypoint_error = "Contract has no entrypoint named a" in let type_mismatch_error = - match protocol with - | Nairobi -> "Type nat is not compatible with type unit." - | _ -> - "is not acceptable as a handle to an implicit account, whose \ - parameters type can only be unit or ticket " + "is not acceptable as a handle to an implicit account, whose parameters \ + type can only be unit or ticket " in let* () = check_contract_ko client tz1 (Some "a") "unit" no_entrypoint_error diff --git a/tezt/tests/dac.ml b/tezt/tests/dac.ml index c84af1a1222d..aad5d670fa57 100644 --- a/tezt/tests/dac.ml +++ b/tezt/tests/dac.ml @@ -2079,7 +2079,6 @@ module Tx_kernel_e2e = struct let custom_committee_members = [Constant.aggregate_tz4_account] in Dac_helper.scenario_with_full_dac_infrastructure ~__FILE__ - ~supports:Protocol.(From_protocol (number Nairobi + 1)) ~tags:["wasm"; "kernel"; "wasm_2_0_0"; "kernel_e2e"; "dac"; "full"] ~uses:(fun _protocol -> [ diff --git a/tezt/tests/double_consensus.ml b/tezt/tests/double_consensus.ml index 6a2db62512ea..31d7384588c1 100644 --- a/tezt/tests/double_consensus.ml +++ b/tezt/tests/double_consensus.ml @@ -170,7 +170,6 @@ let double_attestation_wrong_slot = Protocol.register_test ~__FILE__ ~title:"double attestation using wrong slot" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "double"; "attestation"; "accuser"; "slot"; "node"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> double_consensus_wrong_slot attest_utils protocol @@ -179,7 +178,6 @@ let double_preattestation_wrong_slot = Protocol.register_test ~__FILE__ ~title:"double preattestation using wrong slot" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "double"; "preattestation"; "accuser"; "slot"; "node"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> double_consensus_wrong_slot preattest_utils protocol @@ -237,7 +235,6 @@ let double_attestation_wrong_block_payload_hash = Protocol.register_test ~__FILE__ ~title:"double attestation using wrong block_payload_hash" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags: [ Tag.layer1; @@ -255,7 +252,6 @@ let double_preattestation_wrong_block_payload_hash = Protocol.register_test ~__FILE__ ~title:"double preattestation using wrong block_payload_hash" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags: [ Tag.layer1; @@ -316,7 +312,6 @@ let double_attestation_wrong_branch = Protocol.register_test ~__FILE__ ~title:"double attestation using wrong branch" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "double"; "attestation"; "accuser"; "branch"; "node"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> double_consensus_wrong_branch attest_utils protocol @@ -325,7 +320,6 @@ let double_preattestation_wrong_branch = Protocol.register_test ~__FILE__ ~title:"double preattestation using wrong branch" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "double"; "preattestation"; "accuser"; "branch"; "node"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> double_consensus_wrong_branch preattest_utils protocol @@ -337,7 +331,6 @@ let operation_too_old = Protocol.register_test ~__FILE__ ~title:"operation too old" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "accuser"; "old"; "operation"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> @@ -406,7 +399,6 @@ let operation_too_far_in_future = Protocol.register_test ~__FILE__ ~title:"operation too far in the future" - ~supports:Protocol.(From_protocol (number Nairobi)) ~tags:[Tag.layer1; "accuser"; "future"; "operation"] ~uses:(fun protocol -> [Protocol.accuser protocol]) @@ fun protocol -> diff --git a/tezt/tests/light.ml b/tezt/tests/light.ml index 61fa93234137..afe0f63c7ceb 100644 --- a/tezt/tests/light.ml +++ b/tezt/tests/light.ml @@ -242,7 +242,7 @@ module NoUselessRpc = struct ] in let paths = - if Protocol.(number protocol <= number Nairobi + 1) then + if Protocol.(number protocol <= number Oxford) then (["helpers"; "endorsing_rights"], []) :: paths else paths in diff --git a/tezt/tests/main.ml b/tezt/tests/main.ml index 8456ddeec726..628115029004 100644 --- a/tezt/tests/main.ml +++ b/tezt/tests/main.ml @@ -225,9 +225,7 @@ let register_protocol_tests_that_use_supports_correctly () = Some do not. Those that do not are declared here. *) let register_protocol_specific_because_regression_tests () = Adaptive_issuance.register ~protocols:[Alpha] ; - Dal.register ~protocols:[Alpha] ; - (* This can be safely removed after Nairobi is frozen *) - Timelock_disabled.register ~protocols:[Nairobi] + Dal.register ~protocols:[Alpha] let () = register_protocol_independent_tests () ; diff --git a/tezt/tests/manager_operations.ml b/tezt/tests/manager_operations.ml index ac04d3e9efe2..5ec8c08da34f 100644 --- a/tezt/tests/manager_operations.ml +++ b/tezt/tests/manager_operations.ml @@ -998,7 +998,7 @@ module Gas_limits = struct match protocol with | Alpha -> limits.hard_gas_limit_per_block - limits.hard_gas_limit_per_operation - | Nairobi | Oxford -> limits.hard_gas_limit_per_operation + | Oxford -> limits.hard_gas_limit_per_operation let block_below_ops_below = Protocol.register_test diff --git a/tezt/tests/mockup.ml b/tezt/tests/mockup.ml index dec4ff3351b0..d3aabfc57268 100644 --- a/tezt/tests/mockup.ml +++ b/tezt/tests/mockup.ml @@ -1347,24 +1347,17 @@ let test_create_mockup_config_show_init_roundtrip protocols = protocol_constants = JSON.parse_file protocol_constants; } in - let compute_expected_amounts protocol bootstrap_accounts protocol_constants = + let compute_expected_amounts bootstrap_accounts protocol_constants = let convert = - if protocol > Protocol.Nairobi then - let limit_of_delegation_over_baking = - JSON.( - protocol_constants |-> "limit_of_delegation_over_baking" |> as_int) - in - let limit_of_delegation_over_baking_plus_1 = - Int64.of_int (limit_of_delegation_over_baking + 1) - in - fun amount -> - Tez.(amount - (amount /! limit_of_delegation_over_baking_plus_1)) - else - let frozen_deposits_percentage = - JSON.(protocol_constants |-> "frozen_deposits_percentage" |> as_int) - in - let pct = 100 - frozen_deposits_percentage in - fun amount -> Tez.(of_mutez_int (pct * to_mutez amount / 100)) + let limit_of_delegation_over_baking = + JSON.( + protocol_constants |-> "limit_of_delegation_over_baking" |> as_int) + in + let limit_of_delegation_over_baking_plus_1 = + Int64.of_int (limit_of_delegation_over_baking + 1) + in + fun amount -> + Tez.(amount - (amount /! limit_of_delegation_over_baking_plus_1)) in List.map (fun account -> {account with amount = convert account.amount}) @@ -1505,7 +1498,6 @@ let test_create_mockup_config_show_init_roundtrip protocols = | Some initial_bootstrap_accounts -> let expected_amounts = compute_expected_amounts - protocol initial_bootstrap_accounts initial_state.protocol_constants in @@ -1559,7 +1551,6 @@ let test_create_mockup_config_show_init_roundtrip protocols = let expected_amounts = compute_expected_amounts - protocol initial_state.bootstrap_accounts initial_state.protocol_constants in diff --git a/tezt/tests/prevalidator.ml b/tezt/tests/prevalidator.ml index cbc966994e09..12bc963bd03b 100644 --- a/tezt/tests/prevalidator.ml +++ b/tezt/tests/prevalidator.ml @@ -2456,7 +2456,6 @@ module Revamped = struct ~__FILE__ ~title:"Ensure that future attestations are propagated" ~tags:["attestation"; "mempool"; "branch_delayed"] - ~supports:Protocol.(From_protocol (number Nairobi)) @@ fun protocol -> log_step 1 "Initialize 3 nodes, connect them, and activate the protocol." ; let nodes_args = Node.[Synchronisation_threshold 0; Private_mode] in diff --git a/tezt/tests/proxy.ml b/tezt/tests/proxy.ml index dc46238c41aa..dbe06d1179dd 100644 --- a/tezt/tests/proxy.ml +++ b/tezt/tests/proxy.ml @@ -148,7 +148,7 @@ let test_cache_at_most_once ~protocols = List.iter (fun (sub_path, query_string) -> test_cache_at_most_once - ~supports:Protocol.(Until_protocol (number Nairobi + 1)) + ~supports:Protocol.(Until_protocol (number Oxford)) ~query_string ("chains" :: "main" :: "blocks" :: "head" :: sub_path) protocols) @@ -274,7 +274,7 @@ let test_context_suffix_no_rpc ~protocols = let iter l f = List.iter f l in iter protocols @@ fun protocol -> let paths = - if Protocol.(number protocol <= number Nairobi + 1) then + if Protocol.(number protocol <= number Oxford) then (["helpers"; "endorsing_rights"], []) :: paths else paths in @@ -545,7 +545,7 @@ module Location = struct (add_rpc_path_prefix ["votes"; "proposals"], []); ] in - if Protocol.(number protocol <= number Nairobi + 1) then + if Protocol.(number protocol <= number Oxford) then (add_rpc_path_prefix ["helpers"; "endorsing_rights"], []) :: compared else compared in diff --git a/tezt/tests/proxy_server_test.ml b/tezt/tests/proxy_server_test.ml index fc2246ba80eb..f49fc3f9bd78 100644 --- a/tezt/tests/proxy_server_test.ml +++ b/tezt/tests/proxy_server_test.ml @@ -292,7 +292,7 @@ let test_multi_protocols = @@ RPC.get_chain_block_helper_attestation_rights ?block () in check proto_attestation_rights ; - if Protocol.(number proto <= number Nairobi + 1) then ( + if Protocol.(number proto <= number Oxford) then ( let* proto_endorsing_rights = Client.RPC.call client @@ RPC.get_chain_block_helper_endorsing_rights ?block () diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 52f8611d117a..71ab534f0223 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -45,7 +45,6 @@ open Sc_rollup_helpers let default_wasm_pvm_revision = function | Protocol.Alpha -> "2.0.0-r4" | Protocol.Oxford -> "2.0.0-r3" - | Protocol.Nairobi -> "2.0.0-r1" let get_outbox_proof ?rpc_hooks ~__LOC__ sc_rollup_node ~message_index ~outbox_level = @@ -2592,7 +2591,7 @@ let test_reveals_fails_on_wrong_hash = let test_reveals_fails_on_unknown_hash = let kind = "arith" in test_full_scenario - ~supports:(Protocol.From_protocol 17) + ~supports:(Protocol.From_protocol 18) ~timeout:120 ~kind ~allow_degraded:true @@ -2815,44 +2814,6 @@ let test_consecutive_commitments _protocol _rollup_node sc_rollup _tezos_node in unit -let test_cement_ignore_commitment ~kind = - let commitment_period = 3 in - let challenge_window = 3 in - test_commitment_scenario - (* this test can be removed when oxford is activated because the - commitment in the cement operation have been removed. *) - ~supports:Protocol.(Until_protocol 17) - ~commitment_period - ~challenge_window - ~kind - ~variant:"cement_ignore_commitment" - @@ fun protocol _sc_rollup_node sc_rollup node client -> - let sc_rollup_node = - Sc_rollup_node.create - (Custom [Sc_rollup_node.Publish]) - node - ~base_dir:(Client.base_dir client) - ~operators:[(Sc_rollup_node.Operating, Constant.bootstrap1.alias)] - (* Don't cement commitments *) - in - let* () = - Sc_rollup_node.run ~event_level:`Debug sc_rollup_node sc_rollup [] - in - let* _level = Sc_rollup_node.wait_sync ~timeout:3. sc_rollup_node in - let* _level = bake_until_lpc_updated client sc_rollup_node in - let* _level = Sc_rollup_node.wait_sync ~timeout:10. sc_rollup_node in - let* () = bake_levels challenge_window client in - let* _level = Sc_rollup_node.wait_sync ~timeout:10. sc_rollup_node in - let* () = - let hash = - (* zero commitment hash *) - "src12UJzB8mg7yU6nWPzicH7ofJbFjyJEbHvwtZdfRXi8DQHNp1LY8" - in - cement_commitment protocol client ~sc_rollup ~hash - in - let* _level = Sc_rollup_node.wait_sync ~timeout:10. sc_rollup_node in - unit - let test_refutation_scenario ?commitment_period ?challenge_window ~variant ~mode ~kind ({allow_degraded; _} as scenario) = let regression = @@ -5695,7 +5656,6 @@ let register ~kind ~protocols = test_consecutive_commitments protocols ~kind ; - test_cement_ignore_commitment ~kind protocols ; test_outbox_message protocols ~kind let register ~protocols = diff --git a/tezt/tests/script_annotations.ml b/tezt/tests/script_annotations.ml index e328d3aba334..3666baafbfaf 100644 --- a/tezt/tests/script_annotations.ml +++ b/tezt/tests/script_annotations.ml @@ -108,7 +108,7 @@ let register = let* () = typecheck_script ?res: - (if Protocol.(number protocol > number Nairobi) then + (if Protocol.(number protocol >= number Oxford) then Some (rex "unexpected annotation") else None) ~legacy:true @@ -119,10 +119,7 @@ let register = was allowed in legacy mode *) let* () = typecheck_script - ?res: - (if Protocol.(number protocol > number Nairobi) then - Some (rex "unexpected annotation") - else None) + ~res:(rex "unexpected annotation") ~legacy:true ~script:"parameter %1 unit; storage unit; code { FAILWITH }" client diff --git a/tezt/tests/script_illtyped.ml b/tezt/tests/script_illtyped.ml index 5322d71743fb..a2ec0d74461c 100644 --- a/tezt/tests/script_illtyped.ml +++ b/tezt/tests/script_illtyped.ml @@ -72,33 +72,6 @@ let test_ill_typecheck script error_pattern = Client.spawn_typecheck_script ~scripts:[script_path] client |> Process.check_error ~msg:error_pattern -let test_legacy_typecheck protocols = - [("timelock", Protocol.(Until_protocol (number Nairobi)))] - |> List.iter @@ fun (script, supports) -> - ( Protocol.register_test - ~__FILE__ - ~supports - ~title: - (sf - "Test deprecated instructions typecheck conditionally - %s" - script) - ~tags:["client"; "script"; "michelson"; "typechecking"] - ~uses_node:false - @@ fun protocol -> - let* client = Client.init_mockup ~protocol () in - let script_path = - Michelson_script.(find ["ill_typed"; script] protocol |> path) - in - let* () = - Client.spawn_typecheck_script - ~scripts:[script_path] - ~legacy:false - client - |> Process.check_error ~msg:(rex "Use of deprecated instruction") - in - Client.typecheck_script ~scripts:[script_path] ~legacy:true client ) - protocols - let register ~protocols = protocols |> List.iter (fun protocol -> @@ -195,5 +168,4 @@ let register ~protocols = rex "The proper type of the return list cannot be inferred." ); ] |> List.iter (fun (script, error_pattern) -> - test_ill_typecheck script error_pattern protocols) ; - test_legacy_typecheck protocols + test_ill_typecheck script error_pattern protocols) diff --git a/tezt/tests/storage_snapshots.ml b/tezt/tests/storage_snapshots.ml index 6ff505514fe4..2915db2445d3 100644 --- a/tezt/tests/storage_snapshots.ml +++ b/tezt/tests/storage_snapshots.ml @@ -375,7 +375,7 @@ let test_drag_after_rolling_import = in let finalized_block_distance = match protocol with - | Nairobi | Oxford -> + | Oxford -> (* Conservative TB finality *) blocks_preservation_cycles * blocks_per_cycle | Alpha -> (* TB finality *) 2 diff --git a/tezt/tests/timelock.ml b/tezt/tests/timelock.ml index 7caed47d0d5f..03941b65d757 100644 --- a/tezt/tests/timelock.ml +++ b/tezt/tests/timelock.ml @@ -368,7 +368,6 @@ let register ~protocols = List.iter (fun (title, test_function, uses_node) -> Protocol.register_test - ~supports:Protocol.(From_protocol (number Nairobi + 1)) ~__FILE__ ~title ~tags:["client"; "michelson"; "timelock"] -- GitLab From d4fd24a3077890bb645ba1bf0758376d6b3faf13 Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 15 Feb 2024 14:37:45 +0100 Subject: [PATCH 3/3] Tezt: Reset regressions files --- ...lient) RPC regression tests- contracts.out | 553 - ...lient) RPC regression tests- delegates.out | 95 - ... client) RPC regression tests- mempool.out | 570 - ...t) RPC regression tests- misc_protocol.out | 146 - ...de client) RPC regression tests- votes.out | 78 - ...light) RPC regression tests- contracts.out | 553 - ...light) RPC regression tests- delegates.out | 95 - ...t) RPC regression tests- misc_protocol.out | 146 - ...ode light) RPC regression tests- votes.out | 78 - ...proxy) RPC regression tests- contracts.out | 553 - ...proxy) RPC regression tests- delegates.out | 95 - ...e proxy) RPC regression tests- mempool.out | 570 - ...y) RPC regression tests- misc_protocol.out | 146 - ...ode proxy) RPC regression tests- votes.out | 78 - ...a_dir) RPC regression tests- contracts.out | 553 - ...a_dir) RPC regression tests- delegates.out | 95 - ...r) RPC regression tests- misc_protocol.out | 146 - ..._data_dir) RPC regression tests- votes.out | 78 - ...r_rpc) RPC regression tests- contracts.out | 553 - ...r_rpc) RPC regression tests- delegates.out | 95 - ...c) RPC regression tests- misc_protocol.out | 146 - ...erver_rpc) RPC regression tests- votes.out | 78 - .../baker_test.ml/Nairobi- Baker rewards.out | 121 - ... - delegate - consensus - destination).out | 108 - ...- delegate - consensus -- destination).out | 108 - ...-- delegate - consensus - destination).out | 108 - ...- delegate - consensus -- destination).out | 108 - ...robi- Test register with consensus key.out | 80 - ... set consensus key - baker is delegate.out | 52 - ... consensus key - baker is not delegate.out | 52 - ... add-approve-transfer-remove liquidity.out | 416 - .../Nairobi- Test trades.out | 446 - ...airobi- Macro expansion- macros-assert.out | 8 - ...- Macro expansion- macros-assert_cmpeq.out | 11 - ...- Macro expansion- macros-assert_cmpge.out | 11 - ...- Macro expansion- macros-assert_cmpgt.out | 11 - ...- Macro expansion- macros-assert_cmple.out | 11 - ...- Macro expansion- macros-assert_cmplt.out | 11 - ... Macro expansion- macros-assert_cmpneq.out | 11 - ...obi- Macro expansion- macros-assert_eq.out | 12 - ...obi- Macro expansion- macros-assert_ge.out | 12 - ...obi- Macro expansion- macros-assert_gt.out | 12 - ...obi- Macro expansion- macros-assert_le.out | 12 - ...obi- Macro expansion- macros-assert_lt.out | 12 - ...bi- Macro expansion- macros-assert_neq.out | 12 - ...acro expansion- macros-big_map_get_add.out | 22 - ...i- Macro expansion- macros-big_map_mem.out | 13 - ...bi- Macro expansion- macros-build_list.out | 23 - ... Macro expansion- macros-carn_and_cdrn.out | 28 - ...irobi- Macro expansion- macros-compare.out | 21 - ... Macro expansion- macros-compare_bytes.out | 21 - .../Nairobi- Macro expansion- macros-fail.out | 2 - ...obi- Macro expansion- macros-guestbook.out | 17 - ...ro expansion- macros-macro_annotations.out | 12 - ...- Macro expansion- macros-map_caddaadr.out | 39 - ...i- Macro expansion- macros-max_in_list.out | 16 - .../Nairobi- Macro expansion- macros-min.out | 12 - ...bi- Macro expansion- macros-pair_macro.out | 17 - ...- Macro expansion- macros-set_caddaadr.out | 32 - ... Macro expansion- macros-take_my_money.out | 13 - ...- Macro expansion- macros-unpair_macro.out | 19 - ...hain opcodes- test_big_map_origination.out | 148 - ...t onchain opcodes- test_contract_fails.out | 70 - ...- Contract onchain opcodes- test_level.out | 113 - ...bi- Contract onchain opcodes- test_now.out | 77 - ...i- Contract onchain opcodes- test_self.out | 77 - ... Contract onchain opcodes- test_sender.out | 170 - ...act onchain opcodes- test_set_delegate.out | 118 - ...- Contract onchain opcodes- test_slice.out | 461 - ... Contract onchain opcodes- test_source.out | 170 - ...ract onchain opcodes- test_split_bytes.out | 142 - ...act onchain opcodes- test_split_string.out | 142 - ...ract onchain opcodes- test_store_input.out | 116 - ...est_trace_origination_compare_big_type.out | 89 - ...st_trace_origination_compare_big_type2.out | 93 - ... onchain opcodes- test_transfer_amount.out | 83 - ... onchain opcodes- test_transfer_tokens.out | 228 - ...abs--storage125992234--input254251340-.out | 38 - ...abs--storage125992234--input420401245-.out | 38 - ...abs--storage125992234--input680650890-.out | 38 - ...add--storage125992234--input125992234-.out | 211 - ..._fr--storage921624073--input322109491-.out | 30 - ..._fr--storage921624073--input461261325-.out | 30 - ..._fr--storage921624073--input530006774-.out | 30 - ..._fr--storage921624073--input712570300-.out | 30 - ...amp--storage921624073--input249636002-.out | 36 - ...amp--storage921624073--input267363182-.out | 36 - ...amp--storage921624073--input438561129-.out | 36 - ...lta--storage921624073--input249636002-.out | 36 - ...lta--storage921624073--input307538219-.out | 36 - ...lta--storage921624073--input373737581-.out | 36 - ...ess--storage921624073--input117475800-.out | 23 - ...and--storage921624073--input106930123-.out | 31 - ...and--storage921624073--input181204719-.out | 31 - ...and--storage921624073--input223774825-.out | 31 - ...and--storage921624073--input908807505-.out | 31 - ...ary--storage125992234--input125992234-.out | 93 - ...tes--storage125992234--input125992234-.out | 75 - ...l_1--storage570553153--input106930123-.out | 24 - ...l_1--storage570553153--input181204719-.out | 24 - ...l_1--storage570553153--input223774825-.out | 24 - ...l_1--storage570553153--input908807505-.out | 24 - ...nce--storage492856247--input125992234-.out | 21 - ...nat--storage495706788--input453441034-.out | 42 - ..._nat--storage56274299--input453441034-.out | 44 - ..._nat--storage56274299--input564400327-.out | 44 - ..._nat--storage56274299--input654274102-.out | 44 - ...nat--storage690637660--input453441034-.out | 43 - ...nat--storage806237530--input453441034-.out | 43 - ...ng--storage109689253--input1071610051-.out | 44 - ...ing--storage109689253--input700475845-.out | 44 - ...ing--storage109689253--input905318451-.out | 44 - ...ing--storage495706788--input700475845-.out | 42 - ...ing--storage915708427--input700475845-.out | 43 - ...ing--storage936682951--input905318451-.out | 43 - ...not_padded--storage921624073--input125.out | 24 - ...nat--storage921624073--input125992234-.out | 24 - ...nt--storage680650890--input1043734173-.out | 21 - ...int--storage680650890--input151303925-.out | 21 - ...int--storage680650890--input520610122-.out | 22 - ...int--storage680650890--input558805129-.out | 22 - ...tez--storage680650890--input229402968-.out | 32 - ...nt--storage287336412--input1019409032-.out | 23 - ...int--storage698210250--input949526473-.out | 23 - ...int--storage739946440--input166435292-.out | 23 - ...int--storage739946440--input583291483-.out | 23 - ...nt--storage994282947--input1055524890-.out | 23 - ...int--storage994282947--input453441034-.out | 22 - ...int--storage994282947--input564400327-.out | 22 - ...int--storage994282947--input585234482-.out | 22 - ...int--storage994282947--input680650890-.out | 22 - ...int--storage994282947--input701858804-.out | 22 - ...at--storage287336412--input1019409032-.out | 23 - ...nat--storage698210250--input949526473-.out | 23 - ...nat--storage739946440--input166435292-.out | 23 - ...nat--storage739946440--input583291483-.out | 23 - ...at--storage994282947--input1055524890-.out | 23 - ...nat--storage994282947--input453441034-.out | 22 - ...nat--storage994282947--input564400327-.out | 22 - ...nat--storage994282947--input680650890-.out | 22 - ...nt--storage287336412--input1019409032-.out | 26 - ...int--storage698210250--input949526473-.out | 26 - ...int--storage739946440--input166435292-.out | 26 - ...int--storage739946440--input583291483-.out | 26 - ...nt--storage994282947--input1055524890-.out | 26 - ...int--storage994282947--input453441034-.out | 25 - ...int--storage994282947--input564400327-.out | 25 - ...int--storage994282947--input585234482-.out | 25 - ...int--storage994282947--input680650890-.out | 25 - ...int--storage994282947--input701858804-.out | 25 - ...at--storage287336412--input1019409032-.out | 26 - ...nat--storage698210250--input949526473-.out | 26 - ...nat--storage739946440--input166435292-.out | 26 - ...nat--storage739946440--input583291483-.out | 26 - ...at--storage994282947--input1055524890-.out | 26 - ...nat--storage994282947--input453441034-.out | 25 - ...nat--storage994282947--input564400327-.out | 25 - ...nat--storage994282947--input680650890-.out | 25 - ...int--storage125992234--input125992234-.out | 261 - ...nat--storage125992234--input125992234-.out | 126 - ...car--storage680650890--input783124233-.out | 21 - ...cdr--storage680650890--input783124233-.out | 21 - ...ore--storage109160754--input125992234-.out | 23 - ...ore--storage921624073--input125992234-.out | 23 - ...ore--storage981066851--input125992234-.out | 23 - ...omb--storage950292965--input125992234-.out | 30 - ...get--storage125992234--input186507116-.out | 123 - ...set--storage186507116--input125992234-.out | 39 - ...t-2--storage921624073--input186507116-.out | 36 - ...are--storage125992234--input125992234-.out | 398 - ...ons--storage457300675--input281780712-.out | 350 - ...llo--storage457300675--input392583650-.out | 35 - ...llo--storage457300675--input457300675-.out | 21 - ...llo--storage457300675--input640104625-.out | 28 - ...tes--storage457300675--input354091714-.out | 35 - ...tes--storage457300675--input441061063-.out | 28 - ...tes--storage457300675--input457300675-.out | 21 - ...list--storage79230375--input264787654-.out | 96 - ...list--storage79230375--input316676251-.out | 119 - ...list--storage79230375--input457300675-.out | 27 - ...ons--storage457300675--input798141440-.out | 22 - ...ons--storage581876226--input166122047-.out | 22 - ...ons--storage793461282--input781487591-.out | 22 - ...all--storage921624073--input315650912-.out | 166 - ..._all--storage921624073--input51111414-.out | 410 - ...all--storage921624073--input545734274-.out | 166 - ...all--storage921624073--input772794967-.out | 63 - ...all--storage921624073--input917967660-.out | 437 - ...all--storage921624073--input964818218-.out | 166 - ...act--storage125992234--input117475800-.out | 29 - ...act--storage921624073--input125992234-.out | 49 - ...ps--storage492856247--input1011138251-.out | 34 - ...ps--storage492856247--input1018564342-.out | 34 - ...ps--storage492856247--input1031049988-.out | 34 - ...mps--storage492856247--input685590443-.out | 34 - ..._eq--storage125992234--input246866101-.out | 3431 -- ...g_eq--storage125992234--input26856104-.out | 3431 -- ...ign--storage680650890--input529388602-.out | 61 - ...ip--storage1011138251--input590117173-.out | 36 - ...ip--storage1011138251--input850887554-.out | 36 - ...ipn--storage680650890--input529388602-.out | 93 - ...opn--storage680650890--input529388602-.out | 39 - ...ugn--storage680650890--input529388602-.out | 57 - ...p-n--storage125992234--input125992234-.out | 248 - ...div--storage994417987--input247451205-.out | 142 - ...div--storage994417987--input250545589-.out | 142 - ...ediv--storage994417987--input79625541-.out | 142 - ...tez--storage977883604--input147133089-.out | 37 - ...tez--storage977883604--input215785357-.out | 37 - ...tez--storage977883604--input389351431-.out | 37 - ...utez--storage977883604--input44513000-.out | 37 - ...tez--storage977883604--input635398196-.out | 37 - ...tez--storage977883604--input734264738-.out | 37 - ...tez--storage977883604--input993071382-.out | 37 - ...mit--storage125992234--input125992234-.out | 72 - ...map--storage457300675--input125992234-.out | 33 - ...cat--storage398998998--input246262487-.out | 48 - ...ncat--storage398998998--input79230375-.out | 48 - ...rst--storage492856247--input478406404-.out | 30 - ...rst--storage492856247--input962874972-.out | 30 - ...ap--storage1026405794--input329240220-.out | 34 - ...map--storage382368661--input329240220-.out | 34 - ...map--storage496578814--input329240220-.out | 34 - ...map--storage496578814--input507231566-.out | 34 - ...map--storage547821324--input329240220-.out | 34 - ...map--storage796012494--input156280093-.out | 34 - ...map--storage796012494--input228164856-.out | 34 - ...lue--storage139236239--input329240220-.out | 41 - ...alue--storage139236239--input79230375-.out | 41 - ...lue--storage329396864--input156280093-.out | 41 - ...ey--storage921624073--input1040351577-.out | 23 - ...key--storage921624073--input153350004-.out | 23 - ...tring--storage151303925--input3431716-.out | 23 - ...ing--storage151303925--input535018041-.out | 23 - ...-if--storage921624073--input570553153-.out | 27 - ...-if--storage921624073--input954397288-.out | 27 - ...ome--storage398998998--input288201633-.out | 23 - ...ome--storage398998998--input921624073-.out | 25 - ...int--storage921624073--input453441034-.out | 23 - ...int--storage921624073--input535454136-.out | 23 - ...int--storage921624073--input680650890-.out | 23 - ...ak--storage921624073--input1008262038-.out | 24 - ...right--storage4177631--input202098045-.out | 25 - ..._right--storage4177631--input44576556-.out | 25 - ...vel--storage492856247--input125992234-.out | 21 - ...cat--storage717096222--input457300675-.out | 27 - ...cat--storage717096222--input546523343-.out | 27 - ...tes--storage149262694--input220724351-.out | 27 - ...tes--storage149262694--input457300675-.out | 27 - ...ytes--storage65410082--input457300675-.out | 27 - ...tes--storage726220441--input972761363-.out | 27 - ..._id--storage528921618--input264787654-.out | 19 - ..._id--storage528921618--input457300675-.out | 19 - ..._id--storage528921618--input656499821-.out | 19 - ...map--storage528921618--input264787654-.out | 27 - ...map--storage528921618--input457300675-.out | 21 - ...map--storage528921618--input656499821-.out | 27 - ...ter--storage680650890--input568817463-.out | 42 - ...ter--storage680650890--input737923774-.out | 42 - ...ock--storage907453363--input457300675-.out | 36 - ...ock--storage907453363--input648737279-.out | 136 - ...ock--storage907453363--input908379154-.out | 136 - ...ize--storage492856247--input403499055-.out | 21 - ...ize--storage492856247--input457300675-.out | 21 - ...ize--storage492856247--input469078912-.out | 21 - ...ize--storage492856247--input802622031-.out | 21 - ...eft--storage528921618--input457300675-.out | 52 - ...eft--storage528921618--input851203613-.out | 163 - ...tes--storage125992234--input125992234-.out | 93 - ...tes--storage125992234--input125992234-.out | 129 - ...id--storage457300675--input1027566226-.out | 19 - ..._id--storage457300675--input276660554-.out | 19 - ..._id--storage457300675--input599923743-.out | 19 - ...er--storage1011138251--input403579222-.out | 152 - ...er--storage1011138251--input532072758-.out | 152 - ...map--storage457300675--input798141440-.out | 32 - ...map--storage794999348--input152441147-.out | 68 - ..._map--storage88008216--input798141440-.out | 50 - ...nat--storage495706788--input453441034-.out | 42 - ..._nat--storage56274299--input453441034-.out | 42 - ..._nat--storage56274299--input564400327-.out | 42 - ..._nat--storage56274299--input654274102-.out | 42 - ...nat--storage690637660--input453441034-.out | 42 - ...nat--storage806237530--input453441034-.out | 42 - ...ng--storage109689253--input1071610051-.out | 42 - ...ing--storage109689253--input700475845-.out | 42 - ...ing--storage109689253--input905318451-.out | 42 - ...ing--storage495706788--input700475845-.out | 42 - ...ing--storage915708427--input700475845-.out | 42 - ...ing--storage936682951--input905318451-.out | 42 - ...size--storage492856247--input15265129-.out | 21 - ...ize--storage492856247--input158311065-.out | 21 - ...ize--storage492856247--input456982702-.out | 21 - ...ize--storage492856247--input457300675-.out | 21 - ...mul--storage125992234--input125992234-.out | 131 - ..._fr--storage151303925--input216277421-.out | 38 - ..._fr--storage287799761--input485842614-.out | 38 - ...eg--storage680650890--input1067298059-.out | 25 - ...neg--storage680650890--input380029349-.out | 25 - ...neg--storage680650890--input563503226-.out | 25 - ...neg--storage680650890--input788662499-.out | 25 - ...neg--storage680650890--input972832189-.out | 25 - ...none--storage11179311--input125992234-.out | 21 - ...not--storage921624073--input570553153-.out | 23 - ...not--storage921624073--input954397288-.out | 23 - ...ry--storage921624073--input1051197453-.out | 27 - ...ary--storage921624073--input123939249-.out | 27 - ...nary--storage921624073--input24243730-.out | 27 - ...ary--storage921624073--input518945720-.out | 27 - ...ary--storage921624073--input788662499-.out | 27 - ...ary--storage921624073--input906118781-.out | 27 - ...ary--storage921624073--input921874253-.out | 27 - ...ary--storage921624073--input972832189-.out | 27 - ...tes--storage125992234--input125992234-.out | 66 - ...-or--storage921624073--input106930123-.out | 35 - ...-or--storage921624073--input181204719-.out | 35 - ...-or--storage921624073--input223774825-.out | 35 - ...-or--storage921624073--input908807505-.out | 35 - ...ry--storage921624073--input1056991424-.out | 26 - ...ary--storage921624073--input375993021-.out | 26 - ...ary--storage921624073--input673240563-.out | 26 - ...ary--storage921624073--input747448890-.out | 26 - ...ary--storage921624073--input832403787-.out | 26 - ...ary--storage921624073--input858098961-.out | 26 - ...tes--storage125992234--input125992234-.out | 75 - ...rev--storage125992234--input305844558-.out | 845 - ...rev--storage125992234--input646365167-.out | 845 - ...ty--storage125992234--input1028781121-.out | 1194 - ...cty--storage125992234--input802670583-.out | 1032 - ..._id--storage921624073--input106930123-.out | 21 - ..._id--storage921624073--input181204719-.out | 21 - ..._id--storage921624073--input223774825-.out | 21 - ..._id--storage921624073--input908807505-.out | 21 - ...ec--storage256947135--input1050356042-.out | 47 - ...c_2--storage197120858--input179371027-.out | 282 - ...int--storage921624073--input125992234-.out | 23 - ...rse--storage528921618--input457300675-.out | 27 - ...rse--storage528921618--input851203613-.out | 42 - ...oop--storage528921618--input457300675-.out | 50 - ...oop--storage528921618--input851203613-.out | 131 - ...ate--storage457300675--input125992234-.out | 21 - ...ess--storage125992234--input125992234-.out | 46 - ...oint--storage125992234--input125992234.out | 47 - ...int--storage125992234--input289072903-.out | 93 - ...car--storage224747103--input620760059-.out | 49 - ...car--storage224747103--input717096222-.out | 49 - ..._car--storage224747103--input79230375-.out | 49 - ...cdr--storage205576101--input654274102-.out | 46 - ...cdr--storage224747103--input453441034-.out | 46 - ...cdr--storage611418174--input967284912-.out | 46 - ..._id--storage457300675--input264787654-.out | 19 - ..._id--storage457300675--input457300675-.out | 19 - ..._id--storage457300675--input989507347-.out | 19 - ...ter--storage492856247--input457300675-.out | 27 - ...ter--storage492856247--input701684511-.out | 47 - ...ter--storage492856247--input802622031-.out | 32 - ...mber--storage495706788--input33757838-.out | 61 - ...mber--storage550087893--input79230375-.out | 61 - ...mber--storage605111220--input33757838-.out | 61 - ...ize--storage492856247--input403499055-.out | 21 - ...ize--storage492856247--input457300675-.out | 21 - ...ize--storage492856247--input469078912-.out | 21 - ...ize--storage492856247--input802622031-.out | 21 - ...a3--storage921624073--input1008262038-.out | 24 - ...fts--storage921624073--input115382786-.out | 30 - ...fts--storage921624073--input271566295-.out | 30 - ...fts--storage921624073--input340971987-.out | 30 - ...fts--storage921624073--input374168553-.out | 30 - ...fts--storage921624073--input413621582-.out | 30 - ...fts--storage921624073--input424849461-.out | 30 - ...fts--storage921624073--input485030042-.out | 30 - ...fts--storage921624073--input705767726-.out | 30 - ...fts--storage921624073--input769385932-.out | 30 - ...fts--storage921624073--input913715337-.out | 30 - ...lice--storage351480851--input65907686-.out | 38 - ...ice--storage364922380--input198821575-.out | 37 - ...ice--storage364922380--input359592843-.out | 37 - ...ice--storage364922380--input551316239-.out | 37 - ...ice--storage364922380--input722749044-.out | 37 - ...ice--storage364922380--input839234860-.out | 37 - ...ice--storage364922380--input919180079-.out | 37 - ...ice--storage921624073--input551316239-.out | 31 - ...tes--storage229749865--input198821575-.out | 37 - ...tes--storage229749865--input462551352-.out | 37 - ...tes--storage229749865--input489157380-.out | 37 - ...tes--storage229749865--input551316239-.out | 37 - ...tes--storage229749865--input669330759-.out | 37 - ...tes--storage229749865--input743596105-.out | 37 - ...tes--storage229749865--input839234860-.out | 37 - ...ytes--storage504917929--input65907686-.out | 38 - ...tes--storage921624073--input462551352-.out | 31 - ...id--storage921624073--input1016369050-.out | 21 - ...r_id--storage921624073--input93477117-.out | 21 - ...lta--storage492856247--input249636002-.out | 34 - ...lta--storage492856247--input307538219-.out | 34 - ...lta--storage492856247--input831449542-.out | 34 - ...sub--storage921624073--input706350605-.out | 71 - ...sub--storage921624073--input856198194-.out | 71 - ...omb--storage680650890--input394061083-.out | 50 - ...air--storage125992234--input125992234-.out | 462 - ...r--storage1011138251--input1040351577-.out | 32 - ...or--storage921624073--input1058477720-.out | 32 - ...or--storage921624073--input1073176155-.out | 32 - ...xor--storage921624073--input246594902-.out | 32 - ...xor--storage921624073--input506603577-.out | 32 - ...xor--storage921624073--input576248088-.out | 32 - ...xor--storage921624073--input612012282-.out | 32 - ...xor--storage921624073--input617591686-.out | 32 - ...xor--storage921624073--input639311176-.out | 32 - ...xor--storage921624073--input688315180-.out | 32 - ...xor--storage921624073--input967929605-.out | 32 - ...tes--storage125992234--input125992234-.out | 75 - ...irobi- test Michelson opcodes- BALANCE.out | 147 - ...Nairobi- test Michelson opcodes- LEVEL.out | 21 - .../Nairobi- test Michelson opcodes- NOW.out | 21 - ...Michelson opcodes- arithmetic_overflow.out | 224 - ...Michelson opcodes- big_map_contract_io.out | 1088 - ...est Michelson opcodes- check_signature.out | 243 - ...st Michelson opcodes- hash_consistency.out | 32 - ...Michelson opcodes- map_map_side_effect.out | 315 - ...i- test Michelson opcodes- pack_unpack.out | 108 - .../Nairobi- Tc scripts.out | 50658 ---------------- .../Nairobi- Create contract.out | 109 - ...ure (test Coordinator-s post preimage).out | 7 - ...frastructure (test GET v0-certificate).out | 6 - ...rastructure (test GET v0-missing_page).out | 6 - ...ture (test GET v0-monitor-certificate).out | 6 - ...ture (test GET v0-monitor-root_hashes).out | 4 - ... infrastructure (test GET v0-preimage).out | 6 - ...ure (test PUT v0-dac_member_signature).out | 11 - .../Nairobi- set deposits limit.out | 26 - .../Nairobi- unset deposits limit.out | 26 - ...encoding regression test- block_header.out | 35 - ...ding regression test- block_header.raw.out | 26 - ...regression test- block_header.unsigned.out | 32 - ...col encoding regression test- contract.out | 12 - ...otocol encoding regression test- cycle.out | 12 - ...ocol encoding regression test- fitness.out | 11 - ...col encoding regression test- gas.cost.out | 12 - ...protocol encoding regression test- gas.out | 18 - ...otocol encoding regression test- level.out | 13 - ...otocol encoding regression test- nonce.out | 6 - ...ng regression test- operation.internal.out | 140 - ...ol encoding regression test- operation.out | 531 - ...ncoding regression test- operation.raw.out | 11 - ...ng regression test- operation.unsigned.out | 468 - ...tocol encoding regression test- period.out | 12 - ...ol encoding regression test- raw_level.out | 12 - ...rotocol encoding regression test- seed.out | 6 - ...protocol encoding regression test- tez.out | 12 - ...ol encoding regression test- timestamp.out | 6 - ... encoding regression test- vote.ballot.out | 18 - ...encoding regression test- vote.ballots.out | 10 - ...ncoding regression test- vote.listings.out | 16 - ...ng regression test- voting_period.kind.out | 24 - ...ncoding regression test- voting_period.out | 20 - ...irobi- hash data ... of type ... (bad).out | 0 ...robi- hash data ... of type ... (good).out | 594 - .../Nairobi- increase paid storage.out | 30 - ...bi- Test Michelson stack normalization.out | 468 - ...robi- Test normalize in unparsing mode.out | 14 - .../Nairobi- Test normalize script.out | 42 - .../Nairobi- Test normalize type.out | 24 - ...irobi- Test normalize with legacy flag.out | 10 - ...th - RPC API should work and be stable.out | 261 - ...robi- arith - boot sector is evaluated.out | 92 - ...tion of a SCORU executes without error.out | 35 - ...a refutation game are slashed-rewarded.out | 141 - ...irobi- arith - recover bond of stakers.out | 196 - ...ames winning strategies (degraded_new).out | 158 - ... winning strategies (degraded_ongoing).out | 158 - ...games winning strategies (inbox_proof).out | 156 - ...ng strategies (inbox_proof_at_genesis).out | 158 - ...strategies (inbox_proof_many_empty_lev.out | 155 - ...strategies (inbox_proof_one_empty_leve.out | 155 - ...strategies (inbox_proof_with_new_conte.out | 156 - ...games winning strategies (pvm_proof_0).out | 158 - ...games winning strategies (pvm_proof_1).out | 156 - ...games winning strategies (pvm_proof_2).out | 158 - ...games winning strategies (pvm_proof_3).out | 158 - ...ning strategies (pvm_proof_at_genesis).out | 158 - ... strategies (reset_honest_during_game).out | 158 - ...ion games winning strategies (timeout).out | 158 - ..._0 - RPC API should work and be stable.out | 275 - ...tion of a SCORU executes without error.out | 35 - ...mes winning strategies (inbox_proof_0).out | 357 - ...mes winning strategies (inbox_proof_1).out | 357 - ...games winning strategies (pvm_proof_0).out | 360 - ...games winning strategies (pvm_proof_1).out | 360 - ...games winning strategies (pvm_proof_2).out | 360 - ...games winning strategies (pvm_proof_3).out | 360 - .../Nairobi- Test script hash regression.out | 445 - .../Nairobi- Self address transfer.out | 141 - ...fr bytes parameters more than 32 bytes.out | 8 - ...Bls12_381 contract primitives- fr- add.out | 1296 - ...Bls12_381 contract primitives- fr- mul.out | 1296 - ...12_381 contract primitives- fr- negate.out | 108 - ...s12_381 contract primitives- fr- store.out | 108 - ...Bls12_381 contract primitives- g1- add.out | 1296 - ...Bls12_381 contract primitives- g1- mul.out | 1296 - ...12_381 contract primitives- g1- negate.out | 108 - ...s12_381 contract primitives- g1- store.out | 108 - ...Bls12_381 contract primitives- g2- add.out | 1296 - ...Bls12_381 contract primitives- g2- mul.out | 1296 - ...12_381 contract primitives- g2- negate.out | 108 - ...s12_381 contract primitives- g2- store.out | 108 - ...ntract primitives- pairing_check empty.out | 9 - ...ct primitives- pairing_check(neg- pos).out | 1296 - ...ct primitives- pairing_check(pos- neg).out | 1296 - ...ct primitives- pairing_check(pos- pos).out | 1296 - ...ract primitives- signature_aggregation.out | 180 - ..._381 contract primitives- test_groth16.out | 9 - .../Nairobi- Ticket updates in receipt.out | 153 - .../Nairobi- Create and remove tickets.out | 220 - ...mart-contract rollup should succeed wi.out | 55 - ...rom implicit accounts must be rejected.out | 210 - ...inated contracts and implicit accounts.out | 387 - ... implicit accounts with some Tez along.out | 115 - ...plicit accounts with the wrong type mu.out | 195 - ...ts from contracts to implicit accounts.out | 111 - .../Nairobi- Send tickets in bigmap.out | 296 - ... contract storage to implicit accounts.out | 294 - ...rom implicit accounts must be rejected.out | 129 - ...mart-contract rollup should succeed wi.out | 111 - ...t accounts or originated contracts acc.out | 197 - ...rom implicit accounts must be rejected.out | 174 - ... tx kernel should run e2e (kernel_e2e).out | 224 - .../expected/views.ml/Nairobi- Run views.out | 213 - 528 files changed, 113499 deletions(-) delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- contracts.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- delegates.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- mempool.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- misc_protocol.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- votes.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- contracts.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- delegates.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- misc_protocol.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- votes.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- contracts.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- delegates.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- mempool.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- misc_protocol.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- votes.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- contracts.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- delegates.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- misc_protocol.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- votes.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- contracts.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- delegates.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- misc_protocol.out delete mode 100644 tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- votes.out delete mode 100644 tezt/tests/expected/baker_test.ml/Nairobi- Baker rewards.out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus - destination).out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus -- destination).out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus - destination).out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus -- destination).out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test register with consensus key.out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is delegate.out delete mode 100644 tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is not delegate.out delete mode 100644 tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test add-approve-transfer-remove liquidity.out delete mode 100644 tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test trades.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpeq.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpge.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpgt.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmple.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmplt.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpneq.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_eq.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_ge.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_gt.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_le.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_lt.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_neq.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_get_add.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_mem.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-build_list.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-carn_and_cdrn.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare_bytes.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-fail.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-guestbook.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-macro_annotations.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-map_caddaadr.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-max_in_list.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-min.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-pair_macro.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-set_caddaadr.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-take_my_money.out delete mode 100644 tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-unpair_macro.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_big_map_origination.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_contract_fails.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_level.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_now.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_self.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_sender.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_set_delegate.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_slice.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_source.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_bytes.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_string.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_store_input.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type2.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_amount.out delete mode 100644 tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_tokens.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input254251340-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input420401245-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input249636002-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input267363182-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input438561129-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input249636002-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input307538219-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input373737581-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -address--storage921624073--input117475800-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input106930123-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input181204719-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input223774825-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input908807505-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_binary--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input106930123-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input181204719-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input223774825-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input908807505-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -balance--storage492856247--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage495706788--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input654274102-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage690637660--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage806237530--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input1071610051-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input905318451-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage495706788--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage915708427--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage936682951--input905318451-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input125.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_int--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_nat--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -car--storage680650890--input783124233-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cdr--storage680650890--input783124233-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage109160754--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage921624073--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage981066851--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb--storage950292965--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-get--storage125992234--input186507116-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set--storage186507116--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set-2--storage921624073--input186507116-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -compare--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comparisons--storage457300675--input281780712-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input392583650-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input640104625-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input354091714-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input441061063-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input264787654-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input316676251-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage457300675--input798141440-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage581876226--input166122047-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage793461282--input781487591-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input315650912-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input51111414-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input545734274-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input772794967-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input917967660-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input964818218-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contract--storage125992234--input117475800-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -create_contract--storage921624073--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1011138251-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1018564342-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1031049988-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input685590443-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input246866101-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input26856104-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dign--storage680650890--input529388602-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input590117173-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input850887554-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dipn--storage680650890--input529388602-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dropn--storage680650890--input529388602-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dugn--storage680650890--input529388602-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dup-n--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input247451205-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input250545589-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input79625541-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input147133089-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input215785357-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input389351431-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input44513000-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input635398196-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input734264738-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input993071382-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -emit--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -empty_map--storage457300675--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input246262487-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input79230375-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input478406404-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input962874972-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage1026405794--input329240220-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage382368661--input329240220-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input329240220-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input507231566-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage547821324--input329240220-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input156280093-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input228164856-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input329240220-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input79230375-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage329396864--input156280093-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input1040351577-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input153350004-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input3431716-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input535018041-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input570553153-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input954397288-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input288201633-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input921624073-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input535454136-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input680650890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -keccak--storage921624073--input1008262038-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input202098045-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input44576556-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -level--storage492856247--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input546523343-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input220724351-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage65410082--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage726220441--input972761363-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input264787654-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input656499821-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input264787654-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input656499821-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input568817463-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input737923774-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input648737279-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input908379154-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input403499055-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input469078912-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input802622031-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input851203613-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsl_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsr_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input1027566226-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input276660554-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input599923743-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input403579222-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input532072758-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage457300675--input798141440-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage794999348--input152441147-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage88008216--input798141440-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage495706788--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input564400327-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input654274102-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage690637660--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage806237530--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input1071610051-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input905318451-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage495706788--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage915708427--input700475845-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage936682951--input905318451-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input15265129-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input158311065-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input456982702-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mul--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input1067298059-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input380029349-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input563503226-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input788662499-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input972832189-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -none--storage11179311--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input570553153-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input954397288-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input1051197453-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input123939249-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input24243730-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input518945720-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input788662499-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input906118781-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input921874253-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input972832189-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input106930123-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input181204719-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input223774825-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input908807505-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input1056991424-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input375993021-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input673240563-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input747448890-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input832403787-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input858098961-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input305844558-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input646365167-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input106930123-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input181204719-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input223774825-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input908807505-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec--storage256947135--input1050356042-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec_2--storage197120858--input179371027-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ret_int--storage921624073--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input851203613-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input851203613-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sapling_empty_state--storage457300675--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_address--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_default_entrypoint--storage125992234--input125992234.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_entrypoint--storage125992234--input289072903-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input620760059-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input717096222-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input79230375-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage205576101--input654274102-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage224747103--input453441034-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage611418174--input967284912-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input264787654-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input989507347-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input701684511-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input802622031-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage495706788--input33757838-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage550087893--input79230375-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage605111220--input33757838-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input403499055-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input457300675-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input469078912-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input802622031-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sha3--storage921624073--input1008262038-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input115382786-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input271566295-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input340971987-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input374168553-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input413621582-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input424849461-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input485030042-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input705767726-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input769385932-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input913715337-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage351480851--input65907686-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input198821575-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input359592843-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input551316239-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input722749044-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input839234860-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input919180079-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage921624073--input551316239-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input198821575-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input462551352-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input489157380-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input551316239-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input669330759-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input743596105-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input839234860-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage504917929--input65907686-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage921624073--input462551352-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input1016369050-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input93477117-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input706350605-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input856198194-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -uncomb--storage680650890--input394061083-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -unpair--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -voting_power--storage1011138251--input1040351577-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1058477720-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1073176155-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input246594902-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input506603577-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input576248088-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input612012282-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input617591686-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input639311176-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input688315180-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input967929605-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor_bytes--storage125992234--input125992234-.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- BALANCE.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- LEVEL.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- NOW.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- arithmetic_overflow.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- big_map_contract_io.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- check_signature.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- hash_consistency.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- map_map_side_effect.out delete mode 100644 tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- pack_unpack.out delete mode 100644 tezt/tests/expected/contract_typecheck_regression.ml/Nairobi- Tc scripts.out delete mode 100644 tezt/tests/expected/create_contract.ml/Nairobi- Create contract.out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test Coordinator-s post preimage).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-certificate).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-missing_page).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-certificate).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-root_hashes).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-preimage).out delete mode 100644 tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test PUT v0-dac_member_signature).out delete mode 100644 tezt/tests/expected/deposits_limit.ml/Nairobi- set deposits limit.out delete mode 100644 tezt/tests/expected/deposits_limit.ml/Nairobi- unset deposits limit.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.raw.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.unsigned.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- contract.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- cycle.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- fitness.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.cost.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- level.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- nonce.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.internal.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.raw.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.unsigned.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- period.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- raw_level.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- seed.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- tez.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- timestamp.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballot.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballots.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.listings.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.kind.out delete mode 100644 tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.out delete mode 100644 tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (bad).out delete mode 100644 tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (good).out delete mode 100644 tezt/tests/expected/increase_paid_storage.ml/Nairobi- increase paid storage.out delete mode 100644 tezt/tests/expected/normalize.ml/Nairobi- Test Michelson stack normalization.out delete mode 100644 tezt/tests/expected/normalize.ml/Nairobi- Test normalize in unparsing mode.out delete mode 100644 tezt/tests/expected/normalize.ml/Nairobi- Test normalize script.out delete mode 100644 tezt/tests/expected/normalize.ml/Nairobi- Test normalize type.out delete mode 100644 tezt/tests/expected/normalize.ml/Nairobi- Test normalize with legacy flag.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - RPC API should work and be stable.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - boot sector is evaluated.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - origination of a SCORU executes without error.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - participant of a refutation game are slashed-rewarded.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - recover bond of stakers.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_new).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_ongoing).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_at_genesis).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_many_empty_lev.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_one_empty_leve.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_with_new_conte.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_0).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_1).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_2).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_3).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_at_genesis).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (reset_honest_during_game).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (timeout).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - RPC API should work and be stable.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - origination of a SCORU executes without error.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_0).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_1).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out delete mode 100644 tezt/tests/expected/script_hash_regression.ml/Nairobi- Test script hash regression.out delete mode 100644 tezt/tests/expected/self_address_transfer.ml/Nairobi- Self address transfer.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr bytes parameters more than 32 bytes.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- add.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- mul.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- negate.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- store.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- add.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- mul.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- negate.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- store.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- add.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- mul.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- negate.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- store.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check empty.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(neg- pos).out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- neg).out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- pos).out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- signature_aggregation.out delete mode 100644 tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- test_groth16.out delete mode 100644 tezt/tests/expected/ticket_receipt_and_rpc.ml/Nairobi- Ticket updates in receipt.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Create and remove tickets.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Minting then sending tickets to smart-contract rollup should succeed wi.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Overdrafting ticket from implicit accounts must be rejected.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Send tickets between originated contracts and implicit accounts.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with some Tez along.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with the wrong type mu.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Send tickets in bigmap.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Sending ticket from contract storage to implicit accounts.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Sending ticket of wrong type from implicit accounts must be rejected.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Sending tickets from storage to smart-contract rollup should succeed wi.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Sending tickets to either implicit accounts or originated contracts acc.out delete mode 100644 tezt/tests/expected/tickets.ml/Nairobi- Sending zero ticket from implicit accounts must be rejected.out delete mode 100644 tezt/tests/expected/tx_sc_rollup.ml/Nairobi- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out delete mode 100644 tezt/tests/expected/views.ml/Nairobi- Run views.out diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- contracts.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- contracts.out deleted file mode 100644 index f0233dd45418..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- contracts.out +++ /dev/null @@ -1,553 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "3800000000000", - "delegate": "[PUBLIC_KEY_HASH]", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "100000000", "counter": "1" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"100000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"1" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "99999566", "delegate": "[PUBLIC_KEY_HASH]", - "counter": "4" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"99999566" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"4" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": - { "prim": "Some", "args": [ { "string": "initial storage" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": {} } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": { "prim": "Some", "args": [ { "string": "initial storage" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Some", "args": [ { "string": "initial storage" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", - "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": - [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": - { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": - { "rem_right": { "prim": "string" }, "rem_left": { "prim": "string" }, - "rem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%rem_left" ] }, - { "prim": "string", "annots": [ "%rem_right" ] } ] }, - "mem_right": { "prim": "string" }, "mem_left": { "prim": "string" }, - "mem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", "annots": [ "%mem_right" ] } ] }, - "default": { "prim": "unit" }, - "add_right": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add_left": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add": - { "prim": "or", - "args": - [ { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_right" ] } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "test" - }, - "type": { - "prim": "string" - } -}' -null - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "dup" - }, - "type": { - "prim": "string" - } -}' -null diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- delegates.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- delegates.out deleted file mode 100644 index 11c9db29ab4c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- delegates.out +++ /dev/null @@ -1,95 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 5, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -"200000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -false - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -[ "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -5 - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -Fatal error: - Command failed: The implicit account ([PUBLIC_KEY_HASH]) whose balance was requested is not a registered delegate. To get the balance of this account you can use the ../context/contracts/[PUBLIC_KEY_HASH]/balance RPC. - The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- mempool.out deleted file mode 100644 index cba290552cde..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- mempool.out +++ /dev/null @@ -1,570 +0,0 @@ - -curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.017-PtNairob.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.017-PtNairob.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=0' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=3' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=0&validation_pass=3' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=1&validation_pass=2' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=false&outdated=false&branch_delayed=false&branch_refused=false' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": [], "outdated": [], "branch_refused": [], "branch_delayed": [], - "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=true&outdated=false&branch_delayed=false&branch_refused=false' -{ "validated": [], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], "branch_refused": [], "branch_delayed": [], - "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=false&branch_delayed=true&branch_refused=false' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=false&branch_delayed=false&branch_refused=true' -{ "validated": [], "refused": [], "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], "branch_delayed": [], - "unprocessed": [] } - -./octez-client rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=true&branch_delayed=false&branch_refused=false' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.017-PtNairob.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.017-PtNairob.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.017-PtNairob.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{} - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "1", - "minimal_nanotez_per_gas_unit": [ - "2", - "3" - ], - "minimal_nanotez_per_byte": [ - "4", - "5" - ], - "replace_by_fee_factor": [ - "6", - "7" - ], - "max_operations": 8, - "max_total_bytes": 9 -}' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "25", - "minimal_nanotez_per_byte": [ - "1050", - "1" - ], - "max_operations": 2000 -}' -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_fees": "25", "minimal_nanotez_per_byte": [ "1050", "1" ], - "max_operations": 2000 } - -./octez-client rpc post /chains/main/mempool/filter with '{}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{} - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "0" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_nanotez_per_gas_unit": [ "100", "0" ] } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "1" - ], - "minimal_nanotez_per_byte": [ - "4611686018427387903", - "1" - ], - "max_operations": 10000, - "max_total_bytes": 0 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "100", - "minimal_nanotez_per_gas_unit": [ - "1050", - "1" - ], - "minimal_nanotez_per_byte": [ - "7", - "5" - ], - "replace_by_fee_factor": [ - "21", - "20" - ], - "max_operations": 10, - "max_total_bytes": 10000000, - "invalid_field_name": 100 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "true" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "max_operations": "1000" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "1", - "10" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "-1" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc post /chains/main/mempool/filter with '{ - "max_operations": -1 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- misc_protocol.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- misc_protocol.out deleted file mode 100644 index 1b6a3cc29600..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- misc_protocol.out +++ /dev/null @@ -1,146 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/constants -{ "proof_of_work_nonce_size": 8, "nonce_length": 32, - "max_anon_ops_per_block": 132, "max_operation_data_length": 32768, - "max_proposals_per_delegate": 20, "max_micheline_node_count": 50000, - "max_micheline_bytes_limit": 50000, - "max_allowed_global_constants_depth": 10000, "cache_layout_size": 3, - "michelson_maximum_type_size": 2001, - "smart_rollup_max_wrapped_proof_binary_size": 30000, - "smart_rollup_message_size_limit": 4096, - "smart_rollup_max_number_of_messages_per_level": "1000000", - "preserved_cycles": 2, "blocks_per_cycle": 8, "blocks_per_commitment": 4, - "nonce_revelation_threshold": 4, "blocks_per_stake_snapshot": 4, - "cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000", - "hard_gas_limit_per_block": "2600000", "proof_of_work_threshold": "-1", - "minimal_stake": "6000000000", "vdf_difficulty": "50000", - "seed_nonce_revelation_tip": "125000", "origination_size": 257, - "baking_reward_fixed_portion": "333333", - "baking_reward_bonus_per_slot": "3921", - "endorsing_reward_per_slot": "2604", "cost_per_byte": "250", - "hard_storage_limit_per_operation": "60000", "quorum_min": 2000, - "quorum_max": 7000, "min_proposal_quorum": 500, - "liquidity_baking_subsidy": "83333", - "liquidity_baking_toggle_ema_threshold": 1000000000, - "max_operations_time_to_live": 8, "minimal_block_delay": "1", - "delay_increment_per_round": "1", "consensus_committee_size": 256, - "consensus_threshold": 0, - "minimal_participation_ratio": { "numerator": 2, "denominator": 3 }, - "max_slashing_period": 2, "frozen_deposits_percentage": 5, - "double_baking_punishment": "640000000", - "ratio_of_frozen_deposits_slashed_per_double_endorsement": - { "numerator": 1, "denominator": 2 }, "cache_script_size": 100000000, - "cache_stake_distribution_cycles": 8, "cache_sampler_state_cycles": 8, - "tx_rollup_enable": false, "tx_rollup_origination_size": 4000, - "tx_rollup_hard_size_limit_per_inbox": 500000, - "tx_rollup_hard_size_limit_per_message": 5000, - "tx_rollup_max_withdrawals_per_batch": 15, - "tx_rollup_commitment_bond": "10000000000", - "tx_rollup_finality_period": 40000, "tx_rollup_withdraw_period": 40000, - "tx_rollup_max_inboxes_count": 40100, - "tx_rollup_max_messages_per_inbox": 1010, - "tx_rollup_max_commitments_count": 80100, - "tx_rollup_cost_per_byte_ema_factor": 120, - "tx_rollup_max_ticket_payload_size": 2048, - "tx_rollup_rejection_max_proof_size": 30000, - "tx_rollup_sunset_level": 3473409, - "dal_parametric": - { "feature_enable": false, "number_of_slots": 16, "attestation_lag": 1, - "attestation_threshold": 50, "blocks_per_epoch": 2, - "redundancy_factor": 8, "page_size": 128, "slot_size": 32768, - "number_of_shards": 64 }, "smart_rollup_enable": true, - "smart_rollup_arith_pvm_enable": false, - "smart_rollup_origination_size": 6314, - "smart_rollup_challenge_window_in_blocks": 80640, - "smart_rollup_stake_amount": "10000000000", - "smart_rollup_commitment_period_in_blocks": 60, - "smart_rollup_max_lookahead_in_blocks": 172800, - "smart_rollup_max_active_outbox_levels": 80640, - "smart_rollup_max_outbox_messages_per_level": 100, - "smart_rollup_number_of_sections_in_dissection": 32, - "smart_rollup_timeout_period_in_blocks": 40320, - "smart_rollup_max_number_of_cemented_commitments": 5, - "smart_rollup_max_number_of_parallel_games": 32, "zk_rollup_enable": false, - "zk_rollup_origination_size": 4000, - "zk_rollup_min_pending_to_process": 10 } - -./octez-client rpc get /chains/main/blocks/head/helpers/baking_rights -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 0, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 1, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 3, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 10, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/baking_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/current_level?offset=0' -{ "level": 1, "level_position": 0, "cycle": 0, "cycle_position": 0, - "expected_commitment": false } - -./octez-client rpc get /chains/main/blocks/head/helpers/endorsing_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "endorsing_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "endorsing_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "endorsing_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/endorsing_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/attestation_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "attestation_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "attestation_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "attestation_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/attestation_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/levels_in_current_cycle -{ "first": 1, "last": 8 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- votes.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- votes.out deleted file mode 100644 index 7a6be820083a..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode client) RPC regression tests- votes.out +++ /dev/null @@ -1,78 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "0", "nay": "0", "pass": "0" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 1, "remaining": 2 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -null - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[ [ "ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp", "4000000000000" ] ] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 2, "remaining": 1 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000000000000" - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[ { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "nay" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "pass" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "yay" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "4000001978209", "nay": "4000000000000", "pass": "4000000000000" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 0, "remaining": 3 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -"ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp" - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000001978209" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 1, "remaining": 2 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000001978209" diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- contracts.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- contracts.out deleted file mode 100644 index cd67573dc9ab..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- contracts.out +++ /dev/null @@ -1,553 +0,0 @@ - -./octez-client --mode light rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode light rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "3800000000000", - "delegate": "[PUBLIC_KEY_HASH]", "counter": "0" } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800000000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"0" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "0" } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "100000000", "counter": "1" } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"100000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"1" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -null - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "99999566", "delegate": "[PUBLIC_KEY_HASH]", - "counter": "4" } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"99999566" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"4" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": - { "prim": "Some", "args": [ { "string": "initial storage" } ] } } } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": {} } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": { "prim": "Some", "args": [ { "string": "initial storage" } ] } } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Some", "args": [ { "string": "initial storage" } ] } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", - "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": - [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": - { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client --mode light rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": - { "rem_right": { "prim": "string" }, "rem_left": { "prim": "string" }, - "rem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%rem_left" ] }, - { "prim": "string", "annots": [ "%rem_right" ] } ] }, - "mem_right": { "prim": "string" }, "mem_left": { "prim": "string" }, - "mem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", "annots": [ "%mem_right" ] } ] }, - "default": { "prim": "unit" }, - "add_right": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add_left": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add": - { "prim": "or", - "args": - [ { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_right" ] } ] } } } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } - -./octez-client --mode light rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "test" - }, - "type": { - "prim": "string" - } -}' -null - -./octez-client --mode light rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "dup" - }, - "type": { - "prim": "string" - } -}' -null diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- delegates.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- delegates.out deleted file mode 100644 index bafaa8f0dfbd..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- delegates.out +++ /dev/null @@ -1,95 +0,0 @@ - -./octez-client --mode light rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode light rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 5, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -"4000000000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -"200000000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -false - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -"0" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -[ "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -5 - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -"4000000000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -"4000000000000" - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -Fatal error: - Command failed: The implicit account ([PUBLIC_KEY_HASH]) whose balance was requested is not a registered delegate. To get the balance of this account you can use the ../context/contracts/[PUBLIC_KEY_HASH]/balance RPC. - The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode light rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- misc_protocol.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- misc_protocol.out deleted file mode 100644 index 7f80b3f427ad..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- misc_protocol.out +++ /dev/null @@ -1,146 +0,0 @@ - -./octez-client --mode light rpc get /chains/main/blocks/head/context/constants -{ "proof_of_work_nonce_size": 8, "nonce_length": 32, - "max_anon_ops_per_block": 132, "max_operation_data_length": 32768, - "max_proposals_per_delegate": 20, "max_micheline_node_count": 50000, - "max_micheline_bytes_limit": 50000, - "max_allowed_global_constants_depth": 10000, "cache_layout_size": 3, - "michelson_maximum_type_size": 2001, - "smart_rollup_max_wrapped_proof_binary_size": 30000, - "smart_rollup_message_size_limit": 4096, - "smart_rollup_max_number_of_messages_per_level": "1000000", - "preserved_cycles": 2, "blocks_per_cycle": 8, "blocks_per_commitment": 4, - "nonce_revelation_threshold": 4, "blocks_per_stake_snapshot": 4, - "cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000", - "hard_gas_limit_per_block": "2600000", "proof_of_work_threshold": "-1", - "minimal_stake": "6000000000", "vdf_difficulty": "50000", - "seed_nonce_revelation_tip": "125000", "origination_size": 257, - "baking_reward_fixed_portion": "333333", - "baking_reward_bonus_per_slot": "3921", - "endorsing_reward_per_slot": "2604", "cost_per_byte": "250", - "hard_storage_limit_per_operation": "60000", "quorum_min": 2000, - "quorum_max": 7000, "min_proposal_quorum": 500, - "liquidity_baking_subsidy": "83333", - "liquidity_baking_toggle_ema_threshold": 1000000000, - "max_operations_time_to_live": 8, "minimal_block_delay": "1", - "delay_increment_per_round": "1", "consensus_committee_size": 256, - "consensus_threshold": 0, - "minimal_participation_ratio": { "numerator": 2, "denominator": 3 }, - "max_slashing_period": 2, "frozen_deposits_percentage": 5, - "double_baking_punishment": "640000000", - "ratio_of_frozen_deposits_slashed_per_double_endorsement": - { "numerator": 1, "denominator": 2 }, "cache_script_size": 100000000, - "cache_stake_distribution_cycles": 8, "cache_sampler_state_cycles": 8, - "tx_rollup_enable": false, "tx_rollup_origination_size": 4000, - "tx_rollup_hard_size_limit_per_inbox": 500000, - "tx_rollup_hard_size_limit_per_message": 5000, - "tx_rollup_max_withdrawals_per_batch": 15, - "tx_rollup_commitment_bond": "10000000000", - "tx_rollup_finality_period": 40000, "tx_rollup_withdraw_period": 40000, - "tx_rollup_max_inboxes_count": 40100, - "tx_rollup_max_messages_per_inbox": 1010, - "tx_rollup_max_commitments_count": 80100, - "tx_rollup_cost_per_byte_ema_factor": 120, - "tx_rollup_max_ticket_payload_size": 2048, - "tx_rollup_rejection_max_proof_size": 30000, - "tx_rollup_sunset_level": 3473409, - "dal_parametric": - { "feature_enable": false, "number_of_slots": 16, "attestation_lag": 1, - "attestation_threshold": 50, "blocks_per_epoch": 2, - "redundancy_factor": 8, "page_size": 128, "slot_size": 32768, - "number_of_shards": 64 }, "smart_rollup_enable": true, - "smart_rollup_arith_pvm_enable": false, - "smart_rollup_origination_size": 6314, - "smart_rollup_challenge_window_in_blocks": 80640, - "smart_rollup_stake_amount": "10000000000", - "smart_rollup_commitment_period_in_blocks": 60, - "smart_rollup_max_lookahead_in_blocks": 172800, - "smart_rollup_max_active_outbox_levels": 80640, - "smart_rollup_max_outbox_messages_per_level": 100, - "smart_rollup_number_of_sections_in_dissection": 32, - "smart_rollup_timeout_period_in_blocks": 40320, - "smart_rollup_max_number_of_cemented_commitments": 5, - "smart_rollup_max_number_of_parallel_games": 32, "zk_rollup_enable": false, - "zk_rollup_origination_size": 4000, - "zk_rollup_min_pending_to_process": 10 } - -./octez-client --mode light rpc get /chains/main/blocks/head/helpers/baking_rights -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 0, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 1, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 3, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 10, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/helpers/baking_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/helpers/current_level?offset=0' -{ "level": 1, "level_position": 0, "cycle": 0, "cycle_position": 0, - "expected_commitment": false } - -./octez-client --mode light rpc get /chains/main/blocks/head/helpers/endorsing_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "endorsing_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "endorsing_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "endorsing_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/helpers/endorsing_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode light rpc get /chains/main/blocks/head/helpers/attestation_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "attestation_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "attestation_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "attestation_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode light rpc get '/chains/main/blocks/head/helpers/attestation_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode light rpc get /chains/main/blocks/head/helpers/levels_in_current_cycle -{ "first": 1, "last": 8 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- votes.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- votes.out deleted file mode 100644 index ed1465430a6d..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode light) RPC regression tests- votes.out +++ /dev/null @@ -1,78 +0,0 @@ - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/ballot_list -[] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "0", "nay": "0", "pass": "0" } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 1, "remaining": 2 } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_proposal -null - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" } ] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/proposals -[ [ "ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp", "4000000000000" ] ] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 2, "remaining": 1 } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/total_voting_power -"20000000000000" - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/ballot_list -[ { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "nay" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "pass" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "yay" } ] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "4000001978209", "nay": "4000000000000", "pass": "4000000000000" } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 0, "remaining": 3 } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_proposal -"ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp" - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000001978209" } ] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/proposals -[] - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 1, "remaining": 2 } - -./octez-client --mode light rpc get /chains/main/blocks/head/votes/total_voting_power -"20000001978209" diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- contracts.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- contracts.out deleted file mode 100644 index f9a84fa41751..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- contracts.out +++ /dev/null @@ -1,553 +0,0 @@ - -./octez-client --mode proxy rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "3800000000000", - "delegate": "[PUBLIC_KEY_HASH]", "counter": "0" } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800000000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"0" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "0" } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "100000000", "counter": "1" } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"100000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"1" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -null - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "99999566", "delegate": "[PUBLIC_KEY_HASH]", - "counter": "4" } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"99999566" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"4" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": - { "prim": "Some", "args": [ { "string": "initial storage" } ] } } } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": {} } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": { "prim": "Some", "args": [ { "string": "initial storage" } ] } } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Some", "args": [ { "string": "initial storage" } ] } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", - "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": - [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": - { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client --mode proxy rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": - { "rem_right": { "prim": "string" }, "rem_left": { "prim": "string" }, - "rem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%rem_left" ] }, - { "prim": "string", "annots": [ "%rem_right" ] } ] }, - "mem_right": { "prim": "string" }, "mem_left": { "prim": "string" }, - "mem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", "annots": [ "%mem_right" ] } ] }, - "default": { "prim": "unit" }, - "add_right": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add_left": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add": - { "prim": "or", - "args": - [ { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_right" ] } ] } } } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } - -./octez-client --mode proxy rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "test" - }, - "type": { - "prim": "string" - } -}' -null - -./octez-client --mode proxy rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "dup" - }, - "type": { - "prim": "string" - } -}' -null diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- delegates.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- delegates.out deleted file mode 100644 index 50ec0944ea21..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- delegates.out +++ /dev/null @@ -1,95 +0,0 @@ - -./octez-client --mode proxy rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 5, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -"4000000000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -"200000000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -false - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -"0" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -[ "[PUBLIC_KEY_HASH]" ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -5 - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -"4000000000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -"4000000000000" - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -Fatal error: - Command failed: The implicit account ([PUBLIC_KEY_HASH]) whose balance was requested is not a registered delegate. To get the balance of this account you can use the ../context/contracts/[PUBLIC_KEY_HASH]/balance RPC. - The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- mempool.out deleted file mode 100644 index f38919dc4c94..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- mempool.out +++ /dev/null @@ -1,570 +0,0 @@ - -curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.017-PtNairob.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.017-PtNairob.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=0' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=3' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=0&validation_pass=3' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=true&outdated=true&branch_delayed=true&branch_refused=true&validation_pass=1&validation_pass=2' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=true&refused=false&outdated=false&branch_delayed=false&branch_refused=false' -{ "validated": - [ { "hash": "[OPERATION_HASH]", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]" } ], - "refused": [], "outdated": [], "branch_refused": [], "branch_delayed": [], - "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=true&outdated=false&branch_delayed=false&branch_refused=false' -{ "validated": [], - "refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", "fee": "0", - "counter": "1", "gas_limit": "1040", "storage_limit": "257", - "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "permanent", - "id": "proto.017-PtNairob.prefilter.fees_too_low" } ] } ], - "outdated": [], "branch_refused": [], "branch_delayed": [], - "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=false&branch_delayed=true&branch_refused=false' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "5", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "temporary", - "id": "proto.017-PtNairob.contract.counter_in_the_future", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "1", "found": "5" } ] } ], "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=false&branch_delayed=false&branch_refused=true' -{ "validated": [], "refused": [], "outdated": [], - "branch_refused": - [ { "hash": "[OPERATION_HASH]", - "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "branch": "[BRANCH_HASH]", - "contents": - [ { "kind": "transaction", - "source": "[PUBLIC_KEY_HASH]", - "fee": "1000", "counter": "1", "gas_limit": "1040", - "storage_limit": "257", "amount": "1000000", - "destination": "[PUBLIC_KEY_HASH]" } ], - "signature": - "[SIGNATURE]", - "error": - [ { "kind": "branch", - "id": "proto.017-PtNairob.contract.counter_in_the_past", - "contract": "[PUBLIC_KEY_HASH]", - "expected": "2", "found": "1" } ] } ], "branch_delayed": [], - "unprocessed": [] } - -./octez-client --mode proxy rpc get '/chains/main/mempool/pending_operations?version=2&validated=false&refused=false&outdated=true&branch_delayed=false&branch_refused=false' -{ "validated": [], "refused": [], "outdated": [], "branch_refused": [], - "branch_delayed": [], "unprocessed": [] } - -curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=true&outdated=true&branch_delayed=true&refused=true&branch_refused=true' -[{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.017-PtNairob.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.017-PtNairob.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"1040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.017-PtNairob.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{} - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "1", - "minimal_nanotez_per_gas_unit": [ - "2", - "3" - ], - "minimal_nanotez_per_byte": [ - "4", - "5" - ], - "replace_by_fee_factor": [ - "6", - "7" - ], - "max_operations": 8, - "max_total_bytes": 9 -}' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_fees": "1", "minimal_nanotez_per_gas_unit": [ "2", "3" ], - "minimal_nanotez_per_byte": [ "4", "5" ], - "replace_by_fee_factor": [ "6", "7" ], "max_operations": 8, - "max_total_bytes": 9 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "25", - "minimal_nanotez_per_byte": [ - "1050", - "1" - ], - "max_operations": 2000 -}' -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "25", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1050", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 2000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_fees": "25", "minimal_nanotez_per_byte": [ "1050", "1" ], - "max_operations": 2000 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{} - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "0" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "0" ], - "minimal_nanotez_per_byte": [ "1000", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 10000000 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_nanotez_per_gas_unit": [ "100", "0" ] } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "1" - ], - "minimal_nanotez_per_byte": [ - "4611686018427387903", - "1" - ], - "max_operations": 10000, - "max_total_bytes": 0 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=true' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get '/chains/main/mempool/filter?include_default=false' -{ "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "100", - "minimal_nanotez_per_gas_unit": [ - "1050", - "1" - ], - "minimal_nanotez_per_byte": [ - "7", - "5" - ], - "replace_by_fee_factor": [ - "21", - "20" - ], - "max_operations": 10, - "max_total_bytes": 10000000, - "invalid_field_name": 100 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "true" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "max_operations": "1000" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_nanotez_per_gas_unit": [ - "100", - "1", - "10" - ] -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "minimal_fees": "-1" -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc post /chains/main/mempool/filter with '{ - "max_operations": -1 -}' -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } - -./octez-client --mode proxy rpc get /chains/main/mempool/filter -{ "minimal_fees": "100", "minimal_nanotez_per_gas_unit": [ "100", "1" ], - "minimal_nanotez_per_byte": [ "4611686018427387903", "1" ], - "replace_by_fee_factor": [ "21", "20" ], "max_operations": 10000, - "max_total_bytes": 0 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- misc_protocol.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- misc_protocol.out deleted file mode 100644 index 920b9ffe0c0c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- misc_protocol.out +++ /dev/null @@ -1,146 +0,0 @@ - -./octez-client --mode proxy rpc get /chains/main/blocks/head/context/constants -{ "proof_of_work_nonce_size": 8, "nonce_length": 32, - "max_anon_ops_per_block": 132, "max_operation_data_length": 32768, - "max_proposals_per_delegate": 20, "max_micheline_node_count": 50000, - "max_micheline_bytes_limit": 50000, - "max_allowed_global_constants_depth": 10000, "cache_layout_size": 3, - "michelson_maximum_type_size": 2001, - "smart_rollup_max_wrapped_proof_binary_size": 30000, - "smart_rollup_message_size_limit": 4096, - "smart_rollup_max_number_of_messages_per_level": "1000000", - "preserved_cycles": 2, "blocks_per_cycle": 8, "blocks_per_commitment": 4, - "nonce_revelation_threshold": 4, "blocks_per_stake_snapshot": 4, - "cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000", - "hard_gas_limit_per_block": "2600000", "proof_of_work_threshold": "-1", - "minimal_stake": "6000000000", "vdf_difficulty": "50000", - "seed_nonce_revelation_tip": "125000", "origination_size": 257, - "baking_reward_fixed_portion": "333333", - "baking_reward_bonus_per_slot": "3921", - "endorsing_reward_per_slot": "2604", "cost_per_byte": "250", - "hard_storage_limit_per_operation": "60000", "quorum_min": 2000, - "quorum_max": 7000, "min_proposal_quorum": 500, - "liquidity_baking_subsidy": "83333", - "liquidity_baking_toggle_ema_threshold": 1000000000, - "max_operations_time_to_live": 8, "minimal_block_delay": "1", - "delay_increment_per_round": "1", "consensus_committee_size": 256, - "consensus_threshold": 0, - "minimal_participation_ratio": { "numerator": 2, "denominator": 3 }, - "max_slashing_period": 2, "frozen_deposits_percentage": 5, - "double_baking_punishment": "640000000", - "ratio_of_frozen_deposits_slashed_per_double_endorsement": - { "numerator": 1, "denominator": 2 }, "cache_script_size": 100000000, - "cache_stake_distribution_cycles": 8, "cache_sampler_state_cycles": 8, - "tx_rollup_enable": false, "tx_rollup_origination_size": 4000, - "tx_rollup_hard_size_limit_per_inbox": 500000, - "tx_rollup_hard_size_limit_per_message": 5000, - "tx_rollup_max_withdrawals_per_batch": 15, - "tx_rollup_commitment_bond": "10000000000", - "tx_rollup_finality_period": 40000, "tx_rollup_withdraw_period": 40000, - "tx_rollup_max_inboxes_count": 40100, - "tx_rollup_max_messages_per_inbox": 1010, - "tx_rollup_max_commitments_count": 80100, - "tx_rollup_cost_per_byte_ema_factor": 120, - "tx_rollup_max_ticket_payload_size": 2048, - "tx_rollup_rejection_max_proof_size": 30000, - "tx_rollup_sunset_level": 3473409, - "dal_parametric": - { "feature_enable": false, "number_of_slots": 16, "attestation_lag": 1, - "attestation_threshold": 50, "blocks_per_epoch": 2, - "redundancy_factor": 8, "page_size": 128, "slot_size": 32768, - "number_of_shards": 64 }, "smart_rollup_enable": true, - "smart_rollup_arith_pvm_enable": false, - "smart_rollup_origination_size": 6314, - "smart_rollup_challenge_window_in_blocks": 80640, - "smart_rollup_stake_amount": "10000000000", - "smart_rollup_commitment_period_in_blocks": 60, - "smart_rollup_max_lookahead_in_blocks": 172800, - "smart_rollup_max_active_outbox_levels": 80640, - "smart_rollup_max_outbox_messages_per_level": 100, - "smart_rollup_number_of_sections_in_dissection": 32, - "smart_rollup_timeout_period_in_blocks": 40320, - "smart_rollup_max_number_of_cemented_commitments": 5, - "smart_rollup_max_number_of_parallel_games": 32, "zk_rollup_enable": false, - "zk_rollup_origination_size": 4000, - "zk_rollup_min_pending_to_process": 10 } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/helpers/baking_rights -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 0, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 1, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 3, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 10, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/helpers/baking_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/helpers/current_level?offset=0' -{ "level": 1, "level_position": 0, "cycle": 0, "cycle_position": 0, - "expected_commitment": false } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/helpers/endorsing_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "endorsing_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "endorsing_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "endorsing_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/helpers/endorsing_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/helpers/attestation_rights -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 4, "attestation_power": 47, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "attestation_power": 46, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 55, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "attestation_power": 58, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode proxy rpc get '/chains/main/blocks/head/helpers/attestation_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 1, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 11, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/helpers/levels_in_current_cycle -{ "first": 1, "last": 8 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- votes.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- votes.out deleted file mode 100644 index 3ad2df934604..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy) RPC regression tests- votes.out +++ /dev/null @@ -1,78 +0,0 @@ - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/ballot_list -[] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "0", "nay": "0", "pass": "0" } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 1, "remaining": 2 } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_proposal -null - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" } ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/proposals -[ [ "ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp", "4000000000000" ] ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 2, "remaining": 1 } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/total_voting_power -"20000000000000" - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/ballot_list -[ { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "nay" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "pass" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "yay" } ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "4000001978209", "nay": "4000000000000", "pass": "4000000000000" } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 0, "remaining": 3 } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_proposal -"ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp" - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000001978209" } ] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/proposals -[] - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 1, "remaining": 2 } - -./octez-client --mode proxy rpc get /chains/main/blocks/head/votes/total_voting_power -"20000001978209" diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- contracts.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- contracts.out deleted file mode 100644 index f0233dd45418..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- contracts.out +++ /dev/null @@ -1,553 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "3800000000000", - "delegate": "[PUBLIC_KEY_HASH]", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "100000000", "counter": "1" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"100000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"1" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "99999566", "delegate": "[PUBLIC_KEY_HASH]", - "counter": "4" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"99999566" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"4" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": - { "prim": "Some", "args": [ { "string": "initial storage" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": {} } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": { "prim": "Some", "args": [ { "string": "initial storage" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Some", "args": [ { "string": "initial storage" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", - "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": - [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": - { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": - { "rem_right": { "prim": "string" }, "rem_left": { "prim": "string" }, - "rem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%rem_left" ] }, - { "prim": "string", "annots": [ "%rem_right" ] } ] }, - "mem_right": { "prim": "string" }, "mem_left": { "prim": "string" }, - "mem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", "annots": [ "%mem_right" ] } ] }, - "default": { "prim": "unit" }, - "add_right": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add_left": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add": - { "prim": "or", - "args": - [ { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_right" ] } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "test" - }, - "type": { - "prim": "string" - } -}' -null - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "dup" - }, - "type": { - "prim": "string" - } -}' -null diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- delegates.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- delegates.out deleted file mode 100644 index 11c9db29ab4c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- delegates.out +++ /dev/null @@ -1,95 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 5, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -"200000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -false - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -[ "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -5 - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -Fatal error: - Command failed: The implicit account ([PUBLIC_KEY_HASH]) whose balance was requested is not a registered delegate. To get the balance of this account you can use the ../context/contracts/[PUBLIC_KEY_HASH]/balance RPC. - The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- misc_protocol.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- misc_protocol.out deleted file mode 100644 index cf988ca6fe5c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- misc_protocol.out +++ /dev/null @@ -1,146 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/constants -{ "proof_of_work_nonce_size": 8, "nonce_length": 32, - "max_anon_ops_per_block": 132, "max_operation_data_length": 32768, - "max_proposals_per_delegate": 20, "max_micheline_node_count": 50000, - "max_micheline_bytes_limit": 50000, - "max_allowed_global_constants_depth": 10000, "cache_layout_size": 3, - "michelson_maximum_type_size": 2001, - "smart_rollup_max_wrapped_proof_binary_size": 30000, - "smart_rollup_message_size_limit": 4096, - "smart_rollup_max_number_of_messages_per_level": "1000000", - "preserved_cycles": 2, "blocks_per_cycle": 8, "blocks_per_commitment": 4, - "nonce_revelation_threshold": 4, "blocks_per_stake_snapshot": 4, - "cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000", - "hard_gas_limit_per_block": "2600000", "proof_of_work_threshold": "-1", - "minimal_stake": "6000000000", "vdf_difficulty": "50000", - "seed_nonce_revelation_tip": "125000", "origination_size": 257, - "baking_reward_fixed_portion": "333333", - "baking_reward_bonus_per_slot": "3921", - "endorsing_reward_per_slot": "2604", "cost_per_byte": "250", - "hard_storage_limit_per_operation": "60000", "quorum_min": 2000, - "quorum_max": 7000, "min_proposal_quorum": 500, - "liquidity_baking_subsidy": "83333", - "liquidity_baking_toggle_ema_threshold": 1000000000, - "max_operations_time_to_live": 8, "minimal_block_delay": "1", - "delay_increment_per_round": "1", "consensus_committee_size": 256, - "consensus_threshold": 0, - "minimal_participation_ratio": { "numerator": 2, "denominator": 3 }, - "max_slashing_period": 2, "frozen_deposits_percentage": 5, - "double_baking_punishment": "640000000", - "ratio_of_frozen_deposits_slashed_per_double_endorsement": - { "numerator": 1, "denominator": 2 }, "cache_script_size": 100000000, - "cache_stake_distribution_cycles": 8, "cache_sampler_state_cycles": 8, - "tx_rollup_enable": false, "tx_rollup_origination_size": 4000, - "tx_rollup_hard_size_limit_per_inbox": 500000, - "tx_rollup_hard_size_limit_per_message": 5000, - "tx_rollup_max_withdrawals_per_batch": 15, - "tx_rollup_commitment_bond": "10000000000", - "tx_rollup_finality_period": 40000, "tx_rollup_withdraw_period": 40000, - "tx_rollup_max_inboxes_count": 40100, - "tx_rollup_max_messages_per_inbox": 1010, - "tx_rollup_max_commitments_count": 80100, - "tx_rollup_cost_per_byte_ema_factor": 120, - "tx_rollup_max_ticket_payload_size": 2048, - "tx_rollup_rejection_max_proof_size": 30000, - "tx_rollup_sunset_level": 3473409, - "dal_parametric": - { "feature_enable": false, "number_of_slots": 16, "attestation_lag": 1, - "attestation_threshold": 50, "blocks_per_epoch": 2, - "redundancy_factor": 8, "page_size": 128, "slot_size": 32768, - "number_of_shards": 64 }, "smart_rollup_enable": true, - "smart_rollup_arith_pvm_enable": false, - "smart_rollup_origination_size": 6314, - "smart_rollup_challenge_window_in_blocks": 80640, - "smart_rollup_stake_amount": "10000000000", - "smart_rollup_commitment_period_in_blocks": 60, - "smart_rollup_max_lookahead_in_blocks": 172800, - "smart_rollup_max_active_outbox_levels": 80640, - "smart_rollup_max_outbox_messages_per_level": 100, - "smart_rollup_number_of_sections_in_dissection": 32, - "smart_rollup_timeout_period_in_blocks": 40320, - "smart_rollup_max_number_of_cemented_commitments": 5, - "smart_rollup_max_number_of_parallel_games": 32, "zk_rollup_enable": false, - "zk_rollup_origination_size": 4000, - "zk_rollup_min_pending_to_process": 10 } - -./octez-client rpc get /chains/main/blocks/head/helpers/baking_rights -[ { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 0, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 1, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 3, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 4, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/baking_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/current_level?offset=0' -{ "level": 2, "level_position": 1, "cycle": 0, "cycle_position": 1, - "expected_commitment": false } - -./octez-client rpc get /chains/main/blocks/head/helpers/endorsing_rights -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 10, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 3, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "endorsing_power": 65, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "endorsing_power": 41, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/endorsing_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/attestation_rights -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 10, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 3, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "attestation_power": 65, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "attestation_power": 41, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/attestation_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/levels_in_current_cycle -{ "first": 1, "last": 8 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- votes.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- votes.out deleted file mode 100644 index 8c859f49f493..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_data_dir) RPC regression tests- votes.out +++ /dev/null @@ -1,78 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "0", "nay": "0", "pass": "0" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 2, "remaining": 1 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -null - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[ [ "ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp", "4000000000000" ] ] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 3, "remaining": 0 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000000000000" - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[ { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "nay" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "pass" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "yay" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "4000001978209", "nay": "4000000000000", "pass": "4000000000000" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 1, "remaining": 2 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -"ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp" - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000001978209" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 2, "remaining": 1 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000001978209" diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- contracts.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- contracts.out deleted file mode 100644 index f0233dd45418..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- contracts.out +++ /dev/null @@ -1,553 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "3800000000000", - "delegate": "[PUBLIC_KEY_HASH]", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "100000000", "counter": "1" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"100000000" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"1" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "99999566", "delegate": "[PUBLIC_KEY_HASH]", - "counter": "4" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"99999566" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/counter' -"4" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/manager_key' -"[PUBLIC_KEY]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/delegate' -"[PUBLIC_KEY_HASH]" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/entrypoints' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/script' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/storage' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": - { "prim": "Some", "args": [ { "string": "initial storage" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": {} } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": { "prim": "Some", "args": [ { "string": "initial storage" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Some", "args": [ { "string": "initial storage" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]' -{ "balance": "0", - "script": - { "code": - [ { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", - "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": - [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": - "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": - { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/counter' -Fatal error: - No service found at this URL - - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/manager_key' -Fatal error: - No service found at this URL - - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "int": "0" - }, - "type": { - "prim": "int" - } -}' -null - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/entrypoints' -{ "entrypoints": - { "rem_right": { "prim": "string" }, "rem_left": { "prim": "string" }, - "rem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%rem_left" ] }, - { "prim": "string", "annots": [ "%rem_right" ] } ] }, - "mem_right": { "prim": "string" }, "mem_left": { "prim": "string" }, - "mem": - { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", "annots": [ "%mem_right" ] } ] }, - "default": { "prim": "unit" }, - "add_right": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add_left": - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - "add": - { "prim": "or", - "args": - [ { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": [ { "prim": "string" }, { "prim": "nat" } ], - "annots": [ "%add_right" ] } ] } } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/script' -{ "code": - [ { "prim": "storage", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] }, - { "prim": "big_map", - "args": [ { "prim": "string" }, { "prim": "nat" } ] } ] } ] }, - { "prim": "parameter", - "args": - [ { "prim": "or", - "args": - [ { "prim": "unit", "annots": [ "%default" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "string", "annots": [ "%mem_left" ] }, - { "prim": "string", - "annots": [ "%mem_right" ] } ], - "annots": [ "%mem" ] }, - { "prim": "or", - "args": - [ { "prim": "or", - "args": - [ { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_left" ] }, - { "prim": "pair", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ], - "annots": [ "%add_right" ] } ], - "annots": [ "%add" ] }, - { "prim": "or", - "args": - [ { "prim": "string", - "annots": [ "%rem_left" ] }, - { "prim": "string", - "annots": [ "%rem_right" ] } ], - "annots": [ "%rem" ] } ] } ] } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DROP" }, { "prim": "DUP" }, - { "prim": "CAR" }, - { "prim": "PUSH", - "args": [ { "prim": "mutez" }, { "int": "0" } ] }, - { "prim": "NONE", "args": [ { "prim": "key_hash" } ] }, - { "prim": "CREATE_CONTRACT", - "args": - [ [ { "prim": "parameter", - "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "big_map", - "args": - [ { "prim": "string" }, - { "prim": "nat" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DROP" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] }, - { "prim": "DIP", "args": [ [ { "prim": "DROP" } ] ] }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "SWAP" }, { "prim": "CONS" }, - { "prim": "PAIR" } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ] ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": [ [ { "prim": "DUP" } ] ] }, - { "prim": "MEM" }, - [ { "prim": "IF", - "args": - [ [], - [ [ { "prim": "UNIT" }, - { "prim": "FAILWITH" } ] ] ] } ], - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "UNPAIR" }, - { "prim": "DIP", - "args": - [ { "int": "2" }, - [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "SOME" } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ], - [ { "prim": "IF_LEFT", - "args": - [ [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" } ], - [ { "prim": "DIP", - "args": - [ [ { "prim": "UNPAIR" }, - { "prim": "SWAP" } ] ] }, - { "prim": "DIP", - "args": - [ [ { "prim": "NONE", - "args": - [ { "prim": "nat" } ] } ] ] }, - { "prim": "UPDATE" }, - { "prim": "SWAP" } ] ] } ] ] } ] ] }, - { "prim": "PAIR" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ] ] } ], - "storage": { "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "prim": "Pair", "args": [ { "int": "4" }, { "int": "5" } ] } - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "test" - }, - "type": { - "prim": "string" - } -}' -null - -./octez-client rpc post '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/big_map_get' with '{ - "key": { - "string": "dup" - }, - "type": { - "prim": "string" - } -}' -null diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- delegates.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- delegates.out deleted file mode 100644 index 11c9db29ab4c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- delegates.out +++ /dev/null @@ -1,95 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/contracts -[ "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[CONTRACT_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get /chains/main/blocks/head/context/delegates -[ "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]", - "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 5, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -"200000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -false - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -[ "[PUBLIC_KEY_HASH]" ] - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -5 - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -"4000000000000" - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/full_balance' -Fatal error: - Command failed: The implicit account ([PUBLIC_KEY_HASH]) whose balance was requested is not a registered delegate. To get the balance of this account you can use the ../context/contracts/[PUBLIC_KEY_HASH]/balance RPC. - The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/frozen_deposits' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/deactivated' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/delegated_contracts' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/grace_period' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/staking_balance' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]/voting_power' -Fatal error: - Command failed: The provided public key hash ([PUBLIC_KEY_HASH]) is not the address of a registered delegate. If you own this account and want to register it as a delegate, use a delegation operation to delegate the account to itself. - diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- misc_protocol.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- misc_protocol.out deleted file mode 100644 index cf988ca6fe5c..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- misc_protocol.out +++ /dev/null @@ -1,146 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/context/constants -{ "proof_of_work_nonce_size": 8, "nonce_length": 32, - "max_anon_ops_per_block": 132, "max_operation_data_length": 32768, - "max_proposals_per_delegate": 20, "max_micheline_node_count": 50000, - "max_micheline_bytes_limit": 50000, - "max_allowed_global_constants_depth": 10000, "cache_layout_size": 3, - "michelson_maximum_type_size": 2001, - "smart_rollup_max_wrapped_proof_binary_size": 30000, - "smart_rollup_message_size_limit": 4096, - "smart_rollup_max_number_of_messages_per_level": "1000000", - "preserved_cycles": 2, "blocks_per_cycle": 8, "blocks_per_commitment": 4, - "nonce_revelation_threshold": 4, "blocks_per_stake_snapshot": 4, - "cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000", - "hard_gas_limit_per_block": "2600000", "proof_of_work_threshold": "-1", - "minimal_stake": "6000000000", "vdf_difficulty": "50000", - "seed_nonce_revelation_tip": "125000", "origination_size": 257, - "baking_reward_fixed_portion": "333333", - "baking_reward_bonus_per_slot": "3921", - "endorsing_reward_per_slot": "2604", "cost_per_byte": "250", - "hard_storage_limit_per_operation": "60000", "quorum_min": 2000, - "quorum_max": 7000, "min_proposal_quorum": 500, - "liquidity_baking_subsidy": "83333", - "liquidity_baking_toggle_ema_threshold": 1000000000, - "max_operations_time_to_live": 8, "minimal_block_delay": "1", - "delay_increment_per_round": "1", "consensus_committee_size": 256, - "consensus_threshold": 0, - "minimal_participation_ratio": { "numerator": 2, "denominator": 3 }, - "max_slashing_period": 2, "frozen_deposits_percentage": 5, - "double_baking_punishment": "640000000", - "ratio_of_frozen_deposits_slashed_per_double_endorsement": - { "numerator": 1, "denominator": 2 }, "cache_script_size": 100000000, - "cache_stake_distribution_cycles": 8, "cache_sampler_state_cycles": 8, - "tx_rollup_enable": false, "tx_rollup_origination_size": 4000, - "tx_rollup_hard_size_limit_per_inbox": 500000, - "tx_rollup_hard_size_limit_per_message": 5000, - "tx_rollup_max_withdrawals_per_batch": 15, - "tx_rollup_commitment_bond": "10000000000", - "tx_rollup_finality_period": 40000, "tx_rollup_withdraw_period": 40000, - "tx_rollup_max_inboxes_count": 40100, - "tx_rollup_max_messages_per_inbox": 1010, - "tx_rollup_max_commitments_count": 80100, - "tx_rollup_cost_per_byte_ema_factor": 120, - "tx_rollup_max_ticket_payload_size": 2048, - "tx_rollup_rejection_max_proof_size": 30000, - "tx_rollup_sunset_level": 3473409, - "dal_parametric": - { "feature_enable": false, "number_of_slots": 16, "attestation_lag": 1, - "attestation_threshold": 50, "blocks_per_epoch": 2, - "redundancy_factor": 8, "page_size": 128, "slot_size": 32768, - "number_of_shards": 64 }, "smart_rollup_enable": true, - "smart_rollup_arith_pvm_enable": false, - "smart_rollup_origination_size": 6314, - "smart_rollup_challenge_window_in_blocks": 80640, - "smart_rollup_stake_amount": "10000000000", - "smart_rollup_commitment_period_in_blocks": 60, - "smart_rollup_max_lookahead_in_blocks": 172800, - "smart_rollup_max_active_outbox_levels": 80640, - "smart_rollup_max_outbox_messages_per_level": 100, - "smart_rollup_number_of_sections_in_dissection": 32, - "smart_rollup_timeout_period_in_blocks": 40320, - "smart_rollup_max_number_of_cemented_commitments": 5, - "smart_rollup_max_number_of_parallel_games": 32, "zk_rollup_enable": false, - "zk_rollup_origination_size": 4000, - "zk_rollup_min_pending_to_process": 10 } - -./octez-client rpc get /chains/main/blocks/head/helpers/baking_rights -[ { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 0, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 1, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 3, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 4, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/baking_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 3, "delegate": "[PUBLIC_KEY_HASH]", - "round": 2, "estimated_time": "[TIMESTAMP]", - "consensus_key": "[PUBLIC_KEY_HASH]" } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/current_level?offset=0' -{ "level": 2, "level_position": 1, "cycle": 0, "cycle_position": 1, - "expected_commitment": false } - -./octez-client rpc get /chains/main/blocks/head/helpers/endorsing_rights -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 10, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 3, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "endorsing_power": 65, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "endorsing_power": 41, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/endorsing_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "endorsing_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/attestation_rights -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 10, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 3, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 2, "attestation_power": 65, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" }, - { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 0, "attestation_power": 41, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get '/chains/main/blocks/head/helpers/attestation_rights?delegate=[PUBLIC_KEY_HASH]' -[ { "level": 2, - "delegates": - [ { "delegate": "[PUBLIC_KEY_HASH]", - "first_slot": 1, "attestation_power": 50, - "consensus_key": "[PUBLIC_KEY_HASH]" } ] } ] - -./octez-client rpc get /chains/main/blocks/head/helpers/levels_in_current_cycle -{ "first": 1, "last": 8 } diff --git a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- votes.out b/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- votes.out deleted file mode 100644 index 8c859f49f493..000000000000 --- a/tezt/tests/expected/RPC_test.ml/Nairobi- (mode proxy_server_rpc) RPC regression tests- votes.out +++ /dev/null @@ -1,78 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "0", "nay": "0", "pass": "0" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 2, "remaining": 1 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -null - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[ [ "ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp", "4000000000000" ] ] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 3, "remaining": 0 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000000000000" - -./octez-client rpc get /chains/main/blocks/head/votes/ballot_list -[ { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "nay" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "pass" }, - { "pkh": "[PUBLIC_KEY_HASH]", "ballot": "yay" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/ballots -{ "yay": "4000001978209", "nay": "4000000000000", "pass": "4000000000000" } - -./octez-client rpc get /chains/main/blocks/head/votes/current_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 1, "remaining": 2 } - -./octez-client rpc get /chains/main/blocks/head/votes/current_proposal -"ProtoDemoNoopsDemoNoopsDemoNoopsDemoNoopsDemo6XBoYp" - -./octez-client rpc get /chains/main/blocks/head/votes/current_quorum -5500 - -./octez-client rpc get /chains/main/blocks/head/votes/listings -[ { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000000000000" }, - { "pkh": "[PUBLIC_KEY_HASH]", - "voting_power": "4000001978209" } ] - -./octez-client rpc get /chains/main/blocks/head/votes/proposals -[] - -./octez-client rpc get /chains/main/blocks/head/votes/successor_period -{ "voting_period": { "index": 1, "kind": "exploration", "start_position": 4 }, - "position": 2, "remaining": 1 } - -./octez-client rpc get /chains/main/blocks/head/votes/total_voting_power -"20000001978209" diff --git a/tezt/tests/expected/baker_test.ml/Nairobi- Baker rewards.out b/tezt/tests/expected/baker_test.ml/Nairobi- Baker rewards.out deleted file mode 100644 index c47486ab5c03..000000000000 --- a/tezt/tests/expected/baker_test.ml/Nairobi- Baker rewards.out +++ /dev/null @@ -1,121 +0,0 @@ - -./octez-client rpc get /chains/main/blocks/head/metadata -{ "protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "next_protocol": "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf", - "test_chain_status": { "status": "not_running" }, "max_operations_ttl": 2, - "max_operation_data_length": 32768, "max_block_header_length": 289, - "max_operation_list_length": - [ { "max_size": 4194304, "max_op": 2048 }, { "max_size": 32768 }, - { "max_size": 135168, "max_op": 132 }, { "max_size": 524288 } ], - "proposer": "[PUBLIC_KEY_HASH]", - "baker": "[PUBLIC_KEY_HASH]", - "level_info": - { "level": 2, "level_position": 1, "cycle": 0, "cycle_position": 1, - "expected_commitment": false }, - "voting_period_info": - { "voting_period": - { "index": 0, "kind": "proposal", "start_position": 0 }, - "position": 1, "remaining": 81918 }, "nonce_hash": null, - "deactivated": [], - "balance_updates": - [ { "kind": "minted", "category": "bootstrap", - "change": "-20000000000000", "origin": "migration" }, - { "kind": "freezer", "category": "deposits", - "delegate": "[PUBLIC_KEY_HASH]", - "change": "400000000000", "origin": "migration" }, - { "kind": "freezer", "category": "deposits", - "delegate": "[PUBLIC_KEY_HASH]", - "change": "400000000000", "origin": "migration" }, - { "kind": "freezer", "category": "deposits", - "delegate": "[PUBLIC_KEY_HASH]", - "change": "400000000000", "origin": "migration" }, - { "kind": "freezer", "category": "deposits", - "delegate": "[PUBLIC_KEY_HASH]", - "change": "400000000000", "origin": "migration" }, - { "kind": "freezer", "category": "deposits", - "delegate": "[PUBLIC_KEY_HASH]", - "change": "400000000000", "origin": "migration" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "3600000000000", "origin": "migration" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "3600000000000", "origin": "migration" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "3600000000000", "origin": "migration" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "3600000000000", "origin": "migration" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "3600000000000", "origin": "migration" }, - { "kind": "minted", "category": "baking rewards", "change": "-5000000", - "origin": "block" }, - { "kind": "contract", - "contract": "[PUBLIC_KEY_HASH]", - "change": "5000000", "origin": "block" } ], - "liquidity_baking_toggle_ema": 0, - "implicit_operations_results": - [ { "kind": "origination", - "balance_updates": - [ { "kind": "minted", "category": "subsidy", "change": "-64250", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "64250", "origin": "migration" }, - { "kind": "minted", "category": "subsidy", "change": "-1157000", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "1157000", "origin": "migration" }, - { "kind": "minted", "category": "subsidy", "change": "-100", - "origin": "migration" }, - { "kind": "contract", - "contract": "[CONTRACT_HASH]", - "change": "100", "origin": "migration" } ], - "originated_contracts": [ "[CONTRACT_HASH]" ], - "storage_size": "4628", "paid_storage_size_diff": "4628" }, - { "kind": "origination", - "balance_updates": - [ { "kind": "minted", "category": "subsidy", "change": "-64250", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "64250", "origin": "migration" }, - { "kind": "minted", "category": "subsidy", "change": "-494500", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "494500", "origin": "migration" } ], - "originated_contracts": [ "[CONTRACT_HASH]" ], - "storage_size": "1978", "paid_storage_size_diff": "1978" }, - { "kind": "origination", - "balance_updates": - [ { "kind": "minted", "category": "subsidy", "change": "-64250", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "64250", "origin": "migration" }, - { "kind": "minted", "category": "subsidy", "change": "-477750", - "origin": "migration" }, - { "kind": "burned", "category": "storage fees", - "change": "477750", "origin": "migration" }, - { "kind": "minted", "category": "subsidy", "change": "-1000000", - "origin": "migration" }, - { "kind": "contract", - "contract": "[CONTRACT_HASH]", - "change": "1000000", "origin": "migration" } ], - "originated_contracts": [ "[CONTRACT_HASH]" ], - "storage_size": "1911", "paid_storage_size_diff": "1911" }, - { "kind": "transaction", - "storage": - [ { "int": "1" }, { "int": "1250100" }, { "int": "100" }, - { "bytes": "01e927f00ef734dfc85919635e9afc9166c83ef9fc00" }, - { "bytes": "0115eb0104481a6d7921160bc982c5e0a561cd8a3a00" } ], - "balance_updates": - [ { "kind": "minted", "category": "subsidy", "change": "-1250000", - "origin": "subsidy" }, - { "kind": "contract", - "contract": "[CONTRACT_HASH]", - "change": "1250000", "origin": "subsidy" } ], - "consumed_milligas": "2263472", "storage_size": "4630", - "paid_storage_size_diff": "2" } ], - "proposer_consensus_key": "[PUBLIC_KEY_HASH]", - "baker_consensus_key": "[PUBLIC_KEY_HASH]", - "consumed_milligas": "0" } diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus - destination).out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus - destination).out deleted file mode 100644 index 86c4fb92bb21..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus - destination).out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000333333", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000333333", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000004170240", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "4000004170240", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000004170240", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "4000004170240", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800003961728" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client --wait none drain delegate bootstrap1 to dummy_account_0 with dummy_account_0 -Node is bootstrapped. -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Drain delegate: - Consensus key hash: [PUBLIC_KEY_HASH] - Delegate: [PUBLIC_KEY_HASH] - Destination: [PUBLIC_KEY_HASH] (allocated) - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ3762003.858504 - [PUBLIC_KEY_HASH] ... +ꜩ3762003.858504 - [PUBLIC_KEY_HASH] ... -ꜩ38000.038974 - [PUBLIC_KEY_HASH] ... +ꜩ38000.038974 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "238000580819", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "238000580819", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 4, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"38000372307" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003858504" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003858504" diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus -- destination).out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus -- destination).out deleted file mode 100644 index d1d086d28ecb..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker - delegate - consensus -- destination).out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000333333", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000333333", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000004170240", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "4000004170240", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000004170240", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "4000004170240", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800003961728" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client --wait none drain delegate bootstrap1 to dummy_account_1 with dummy_account_0 -Node is bootstrapped. -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Drain delegate: - Consensus key hash: [PUBLIC_KEY_HASH] - Delegate: [PUBLIC_KEY_HASH] - Destination: [PUBLIC_KEY_HASH] (allocated) - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ3762003.858504 - [PUBLIC_KEY_HASH] ... +ꜩ3762003.858504 - [PUBLIC_KEY_HASH] ... -ꜩ38000.038974 - [PUBLIC_KEY_HASH] ... +ꜩ38000.038974 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "238000580819", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "238000580819", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 4, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"38000372307" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003858504" diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus - destination).out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus - destination).out deleted file mode 100644 index 5b09e461ca8a..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus - destination).out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "3999999999716", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "3999999999716", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000003836623", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "4000003836623", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000003836623", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "4000003836623", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800003644792" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client --wait none drain delegate bootstrap1 to dummy_account_0 with dummy_account_0 -Node is bootstrapped. -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Drain delegate: - Consensus key hash: [PUBLIC_KEY_HASH] - Delegate: [PUBLIC_KEY_HASH] - Destination: [PUBLIC_KEY_HASH] (allocated) - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ3762003.544737 - [PUBLIC_KEY_HASH] ... +ꜩ3762003.544737 - [PUBLIC_KEY_HASH] ... -ꜩ38000.035805 - [PUBLIC_KEY_HASH] ... +ꜩ38000.035805 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "238000560969", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "238000560969", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 4, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"38000369138" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003544737" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003544737" diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus -- destination).out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus -- destination).out deleted file mode 100644 index b110ef6d7e2b..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test drain delegate with (baker -- delegate - consensus -- destination).out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "3999999999716", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "3999999999716", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000003836623", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "4000003836623", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000003836623", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "4000003836623", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3800003644792" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client --wait none drain delegate bootstrap1 to dummy_account_1 with dummy_account_0 -Node is bootstrapped. -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Drain delegate: - Consensus key hash: [PUBLIC_KEY_HASH] - Delegate: [PUBLIC_KEY_HASH] - Destination: [PUBLIC_KEY_HASH] (allocated) - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ3762003.544737 - [PUBLIC_KEY_HASH] ... +ꜩ3762003.544737 - [PUBLIC_KEY_HASH] ... -ꜩ38000.035805 - [PUBLIC_KEY_HASH] ... +ꜩ38000.035805 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "238000560969", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "238000560969", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 4, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"38000369138" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"0" - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/balance' -"3762003544737" diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test register with consensus key.out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test register with consensus key.out deleted file mode 100644 index 12001b741aa2..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test register with consensus key.out +++ /dev/null @@ -1,80 +0,0 @@ - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "1" } - -./octez-client --wait none register key dummy_account_0 as delegate with consensus key dummy_account_1 -Node is bootstrapped. -Estimated gas: 172.756 units (will add 0 for safety) -Estimated storage: no bytes added -Estimated gas: 100 units (will add 0 for safety) -Estimated storage: no bytes added -Estimated gas: 100 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000275 - Expected counter: 2 - Gas limit: 173 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000275 - payload fees(the block proposer) ....... +ꜩ0.000275 - Revelation of manager public key: - Contract: [PUBLIC_KEY_HASH] - Key: [PUBLIC_KEY] - This revelation was successfully applied - Consumed gas: 172.524 - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000159 - Expected counter: 3 - Gas limit: 100 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000159 - payload fees(the block proposer) ....... +ꜩ0.000159 - Delegation: - Contract: [PUBLIC_KEY_HASH] - To: [PUBLIC_KEY_HASH] - This delegation was successfully applied - Consumed gas: 100 - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000181 - Expected counter: 4 - Gas limit: 200 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000181 - payload fees(the block proposer) ....... +ꜩ0.000181 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 100 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "999999999385", "current_frozen_deposits": "0", - "frozen_deposits": "0", "staking_balance": "999999999385", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]' -{ "balance": "0", "counter": "4" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "999999999385", "current_frozen_deposits": "49999999969", - "frozen_deposits": "49999999969", "staking_balance": "999999999385", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is delegate.out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is delegate.out deleted file mode 100644 index 7d2d21361f08..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is delegate.out +++ /dev/null @@ -1,52 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000333333", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000333333", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000004170240", "current_frozen_deposits": "200000208512", - "frozen_deposits": "200000208512", "staking_balance": "4000004170240", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } diff --git a/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is not delegate.out b/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is not delegate.out deleted file mode 100644 index 18cb7aa2c78f..000000000000 --- a/tezt/tests/expected/consensus_key.ml/Nairobi- Test set consensus key - baker is not delegate.out +++ /dev/null @@ -1,52 +0,0 @@ - -./octez-client --wait none set consensus key for bootstrap1 to dummy_account_0 -Node is bootstrapped. -Estimated gas: 168.946 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000284 - Expected counter: 1 - Gas limit: 269 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000284 - payload fees(the block proposer) ....... +ꜩ0.000284 - Update_consensus_key: - Public key hash: [PUBLIC_KEY_HASH] - This consensus key update was successfully applied - Consumed gas: 168.880 - - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000000000000", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "4000000000000", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "3999999999716", "current_frozen_deposits": "200000000000", - "frozen_deposits": "200000000000", "staking_balance": "3999999999716", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]", - "pending_consensus_keys": - [ { "cycle": 2, "pkh": "[PUBLIC_KEY_HASH]" } ] } - -./octez-client rpc get '/chains/main/blocks/head/context/delegates/[PUBLIC_KEY_HASH]' -{ "full_balance": "4000003836623", "current_frozen_deposits": "200000191831", - "frozen_deposits": "200000191831", "staking_balance": "4000003836623", - "delegated_contracts": [ "[PUBLIC_KEY_HASH]" ], - "delegated_balance": "0", "deactivated": false, "grace_period": 3, - "voting_power": "4000000000000", "remaining_proposals": 20, - "active_consensus_key": "[PUBLIC_KEY_HASH]" } diff --git a/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test add-approve-transfer-remove liquidity.out b/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test add-approve-transfer-remove liquidity.out deleted file mode 100644 index 8d09fb6b94d4..000000000000 --- a/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test add-approve-transfer-remove liquidity.out +++ /dev/null @@ -1,416 +0,0 @@ - -./octez-client --mode mockup rpc get /chains/main/blocks/head/context/liquidity_baking/cpmm_address -"KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" - -./octez-client --mode mockup get contract storage for KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 -Pair 1 - 100 - 100 - "KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN" - "KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo" - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap1 --entrypoint mintOrBurn --arg '(Pair 100000000 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2388.634 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'ongN87ToSbYN8FBn1stmQPC3UVvgdHnuYoYStiz9oAdazJWJed8' -NOT waiting for the operation to be included. -Use command - octez-client wait for ongN87ToSbYN8FBn1stmQPC3UVvgdHnuYoYStiz9oAdazJWJed8 to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000561 - Expected counter: 1 - Gas limit: 2489 - Storage limit: 91 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000561 - payload fees(the block proposer) ....... +ꜩ0.000561 - Transaction: - Amount: ꜩ0 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: mintOrBurn - Parameter: (Pair 100000000 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 - Storage size: 1982 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2389.041 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap1 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oop7ZhZMc2cUPc2HsLRTzY4jWjGFYrWjohV2PzAVdKkvPBL1WCd' -NOT waiting for the operation to be included. -Use command - octez-client wait for oop7ZhZMc2cUPc2HsLRTzY4jWjGFYrWjohV2PzAVdKkvPBL1WCd to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.00056 - Expected counter: 2 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2053 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap2 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oobmLSPx1d8uUyCPDKoVbcWm9PTbFrKd7Dr2oQcQ8kXDfaeu2Ti' -NOT waiting for the operation to be included. -Use command - octez-client wait for oobmLSPx1d8uUyCPDKoVbcWm9PTbFrKd7Dr2oQcQ8kXDfaeu2Ti to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.00056 - Expected counter: 1 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2124 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap3 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oofp6BwSt7TqtaogYZGTMcWevnf8PYK1YGE43mBxmnLVgVv8XaX' -NOT waiting for the operation to be included. -Use command - octez-client wait for oofp6BwSt7TqtaogYZGTMcWevnf8PYK1YGE43mBxmnLVgVv8XaX to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - Fee to the baker: ꜩ0.00056 - Expected counter: 1 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2195 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup --wait none transfer 9001 from bootstrap1 to KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 --burn-cap 10 --entrypoint addLiquidity --arg '(Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 0 1000000000 "2050-01-01T00:00:00Z")' -Node is bootstrapped. -Estimated gas: 9525.659 units (will add 100 for safety) -Estimated storage: 147 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oogW2v1pKn3Dtvr1iu5VcnLcaaWeYSd6rjA8m9VjjTHWzw5Tnnb' -NOT waiting for the operation to be included. -Use command - octez-client wait for oogW2v1pKn3Dtvr1iu5VcnLcaaWeYSd6rjA8m9VjjTHWzw5Tnnb to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.001318 - Expected counter: 3 - Gas limit: 9626 - Storage limit: 167 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.001318 - payload fees(the block proposer) ....... +ꜩ0.001318 - Transaction: - Amount: ꜩ9001 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - Entrypoint: addLiquidity - Parameter: (Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 0 1000000000 "2050-01-01T00:00:00Z") - This transaction was successfully applied - Updated storage: - { 21599 ; - 9001416765 ; - 2159830 ; - 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; - 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } - Storage size: 4635 bytes - Paid storage size diff: 6 bytes - Consumed gas: 1450.678 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.0015 - storage fees ........................... +ꜩ0.0015 - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ9001 - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... +ꜩ9001 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - (Pair 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 21598)) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 999978402 - Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 99978402 - Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 21598 - Storage size: 2264 bytes - Paid storage size diff: 69 bytes - Consumed gas: 3704.271 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01725 - storage fees ........................... +ꜩ0.01725 - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo - Entrypoint: mintOrBurn - Parameter: (Pair 2159730 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) - This transaction was successfully applied - Updated storage: - { 2 ; 3 ; 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 ; 2159830 } - Updated big_maps: - Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2159730 - Storage size: 2050 bytes - Paid storage size diff: 72 bytes - Consumed gas: 2313.589 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.018 - storage fees ........................... +ꜩ0.018 - - -./octez-client --mode mockup call KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo from bootstrap1 --entrypoint approve --arg '(Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 1000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.116 units (will add 100 for safety) -Estimated storage: 68 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'opUDJbY5Df2cm1tW33WxWdC9t3FKKCRUWYv2Hgpr1xdF64BeStd' -NOT waiting for the operation to be included. -Use command - octez-client wait for opUDJbY5Df2cm1tW33WxWdC9t3FKKCRUWYv2Hgpr1xdF64BeStd to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000557 - Expected counter: 4 - Gas limit: 2491 - Storage limit: 88 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000557 - payload fees(the block proposer) ....... +ꜩ0.000557 - Transaction: - Amount: ꜩ0 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo - Entrypoint: approve - Parameter: (Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 1000) - This transaction was successfully applied - Updated storage: - { 2 ; 3 ; 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 ; 2159830 } - Updated big_maps: - Set map(3)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c)] to 1000 - Storage size: 2118 bytes - Paid storage size diff: 68 bytes - Consumed gas: 2390.522 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.017 - storage fees ........................... +ꜩ0.017 - - -./octez-client --mode mockup call KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo from bootstrap2 --entrypoint transfer --arg '(Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 1000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 3754.960 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is 'opTGREPY311XcdRsrqjzWTLLL7dd3zAuyRDTdgAb1dDps2n9ZQg' -NOT waiting for the operation to be included. -Use command - octez-client wait for opTGREPY311XcdRsrqjzWTLLL7dd3zAuyRDTdgAb1dDps2n9ZQg to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.000743 - Expected counter: 2 - Gas limit: 3855 - Storage limit: 0 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.000743 - payload fees(the block proposer) ....... +ꜩ0.000743 - Transaction: - Amount: ꜩ0 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo - Entrypoint: transfer - Parameter: (Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" - 1000) - This transaction was successfully applied - Updated storage: - { 2 ; 3 ; 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 ; 2159830 } - Updated big_maps: - Unset map(3)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c)] - Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2158730 - Set map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 1000 - Storage size: 2118 bytes - Consumed gas: 3755.367 - - -./octez-client --mode mockup call KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 from bootstrap2 --entrypoint removeLiquidity --arg '(Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 1000 0 0 "2050-01-01T00:00:00Z")' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 9130.753 units (will add 100 for safety) -Estimated storage: 67 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'onxpVHHvvzyh4xFEMXTMyFMdpzrvmkd4MfgSwMpE5vtJRa4KzXn' -NOT waiting for the operation to be included. -Use command - octez-client wait for onxpVHHvvzyh4xFEMXTMyFMdpzrvmkd4MfgSwMpE5vtJRa4KzXn to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.001276 - Expected counter: 3 - Gas limit: 9231 - Storage limit: 87 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.001276 - payload fees(the block proposer) ....... +ꜩ0.001276 - Transaction: - Amount: ꜩ0 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - Entrypoint: removeLiquidity - Parameter: (Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 1000 0 0 "2050-01-01T00:00:00Z") - This transaction was successfully applied - Updated storage: - { 21589 ; - 8997498998 ; - 2158830 ; - 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; - 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } - Storage size: 4635 bytes - Consumed gas: 1452.184 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo - Entrypoint: mintOrBurn - Parameter: (Pair -1000 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c) - This transaction was successfully applied - Updated storage: - { 2 ; 3 ; 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 ; 2158830 } - Updated big_maps: - Unset map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] - Storage size: 2050 bytes - Consumed gas: 2513.548 - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 - (Pair 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c 10)) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 21588 - Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10 - Storage size: 2331 bytes - Paid storage size diff: 67 bytes - Consumed gas: 3007.616 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.01675 - storage fees ........................... +ꜩ0.01675 - Internal Transaction: - Amount: ꜩ4.167766 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - This transaction was successfully applied - Consumed gas: 100 - Balance updates: - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... -ꜩ4.167766 - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... +ꜩ4.167766 - - -./octez-client --mode mockup get contract storage for KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo -Pair 2 3 "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 2158830 - -./octez-client --mode mockup get contract storage for KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN -Pair 0 1 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 100010000 diff --git a/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test trades.out b/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test trades.out deleted file mode 100644 index 9b7e7029fce0..000000000000 --- a/tezt/tests/expected/contract_liquidity_baking.ml/Nairobi- Test trades.out +++ /dev/null @@ -1,446 +0,0 @@ - -./octez-client --mode mockup rpc get /chains/main/blocks/head/context/liquidity_baking/cpmm_address -"KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" - -./octez-client --mode mockup get contract storage for KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 -Pair 1 - 100 - 100 - "KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN" - "KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo" - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap1 --entrypoint mintOrBurn --arg '(Pair 100000000 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2388.634 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'ongN87ToSbYN8FBn1stmQPC3UVvgdHnuYoYStiz9oAdazJWJed8' -NOT waiting for the operation to be included. -Use command - octez-client wait for ongN87ToSbYN8FBn1stmQPC3UVvgdHnuYoYStiz9oAdazJWJed8 to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000561 - Expected counter: 1 - Gas limit: 2489 - Storage limit: 91 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000561 - payload fees(the block proposer) ....... +ꜩ0.000561 - Transaction: - Amount: ꜩ0 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: mintOrBurn - Parameter: (Pair 100000000 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 - Storage size: 1982 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2389.041 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap1 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oop7ZhZMc2cUPc2HsLRTzY4jWjGFYrWjohV2PzAVdKkvPBL1WCd' -NOT waiting for the operation to be included. -Use command - octez-client wait for oop7ZhZMc2cUPc2HsLRTzY4jWjGFYrWjohV2PzAVdKkvPBL1WCd to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.00056 - Expected counter: 2 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2053 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap2 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oobmLSPx1d8uUyCPDKoVbcWm9PTbFrKd7Dr2oQcQ8kXDfaeu2Ti' -NOT waiting for the operation to be included. -Use command - octez-client wait for oobmLSPx1d8uUyCPDKoVbcWm9PTbFrKd7Dr2oQcQ8kXDfaeu2Ti to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.00056 - Expected counter: 1 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2124 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap3 --entrypoint approve --arg '(Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 2390.337 units (will add 100 for safety) -Estimated storage: 71 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oofp6BwSt7TqtaogYZGTMcWevnf8PYK1YGE43mBxmnLVgVv8XaX' -NOT waiting for the operation to be included. -Use command - octez-client wait for oofp6BwSt7TqtaogYZGTMcWevnf8PYK1YGE43mBxmnLVgVv8XaX to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - Fee to the baker: ꜩ0.00056 - Expected counter: 1 - Gas limit: 2491 - Storage limit: 91 bytes - Balance updates: - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... -ꜩ0.00056 - payload fees(the block proposer) ....... +ꜩ0.00056 - Transaction: - Amount: ꜩ0 - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: approve - Parameter: (Pair "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 1000000000) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 - Storage size: 2195 bytes - Paid storage size diff: 71 bytes - Consumed gas: 2390.744 - Balance updates: - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... -ꜩ0.01775 - storage fees ........................... +ꜩ0.01775 - - -./octez-client --mode mockup --wait none transfer 9001 from bootstrap1 to KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 --burn-cap 10 --entrypoint addLiquidity --arg '(Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 0 1000000000 "2050-01-01T00:00:00Z")' -Node is bootstrapped. -Estimated gas: 9525.659 units (will add 100 for safety) -Estimated storage: 147 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'oogW2v1pKn3Dtvr1iu5VcnLcaaWeYSd6rjA8m9VjjTHWzw5Tnnb' -NOT waiting for the operation to be included. -Use command - octez-client wait for oogW2v1pKn3Dtvr1iu5VcnLcaaWeYSd6rjA8m9VjjTHWzw5Tnnb to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.001318 - Expected counter: 3 - Gas limit: 9626 - Storage limit: 167 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.001318 - payload fees(the block proposer) ....... +ꜩ0.001318 - Transaction: - Amount: ꜩ9001 - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - To: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - Entrypoint: addLiquidity - Parameter: (Pair "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 0 1000000000 "2050-01-01T00:00:00Z") - This transaction was successfully applied - Updated storage: - { 21599 ; - 9001416765 ; - 2159830 ; - 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; - 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } - Storage size: 4635 bytes - Paid storage size diff: 6 bytes - Consumed gas: 1450.678 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.0015 - storage fees ........................... +ꜩ0.0015 - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ9001 - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... +ꜩ9001 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - (Pair 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 21598)) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 999978402 - Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 99978402 - Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 21598 - Storage size: 2264 bytes - Paid storage size diff: 69 bytes - Consumed gas: 3704.271 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.01725 - storage fees ........................... +ꜩ0.01725 - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo - Entrypoint: mintOrBurn - Parameter: (Pair 2159730 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) - This transaction was successfully applied - Updated storage: - { 2 ; 3 ; 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 ; 2159830 } - Updated big_maps: - Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 2159730 - Storage size: 2050 bytes - Paid storage size diff: 72 bytes - Consumed gas: 2313.589 - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.018 - storage fees ........................... +ꜩ0.018 - - -./octez-client --mode mockup --wait none transfer 9001 from bootstrap2 to KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 --burn-cap 10 --entrypoint xtzToToken --arg '(Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 0 "2050-01-01T00:00:00Z")' -Node is bootstrapped. -Estimated gas: 6085.236 units (will add 100 for safety) -Estimated storage: 327 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'opJzMCRwQL78gwS4RocbUuF9ADaa1iMLmGGKKzPVM23TYxENQtg' -NOT waiting for the operation to be included. -Use command - octez-client wait for opJzMCRwQL78gwS4RocbUuF9ADaa1iMLmGGKKzPVM23TYxENQtg to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.000966 - Expected counter: 2 - Gas limit: 6186 - Storage limit: 347 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.000966 - payload fees(the block proposer) ....... +ꜩ0.000966 - Transaction: - Amount: ꜩ9001 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - Entrypoint: xtzToToken - Parameter: (Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" 0 "2050-01-01T00:00:00Z") - This transaction was successfully applied - Updated storage: - { 10811 ; - 17993499098 ; - 2159830 ; - 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; - 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } - Storage size: 4636 bytes - Paid storage size diff: 1 bytes - Consumed gas: 920.213 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.00025 - storage fees ........................... +ꜩ0.00025 - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ9001 - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... +ꜩ9001 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 - (Pair 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c 10788)) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 10810 - Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10788 - Storage size: 2333 bytes - Paid storage size diff: 69 bytes - Consumed gas: 3007.650 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.01725 - storage fees ........................... +ꜩ0.01725 - Internal Transaction: - Amount: ꜩ9.001 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU - This transaction was successfully applied - Consumed gas: 100 - Balance updates: - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... -ꜩ9.001 - tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU ... +ꜩ9.001 - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - - -./octez-client --mode mockup call KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN from bootstrap2 --entrypoint transfer --arg '(Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" "tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU" 100)' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 3088.706 units (will add 100 for safety) -Estimated storage: 68 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is 'ooebftAAV6WwH78cCEkxxuZCadxj6whb2W98JmwJ3fMinMgWGZh' -NOT waiting for the operation to be included. -Use command - octez-client wait for ooebftAAV6WwH78cCEkxxuZCadxj6whb2W98JmwJ3fMinMgWGZh to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.000676 - Expected counter: 3 - Gas limit: 3189 - Storage limit: 88 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.000676 - payload fees(the block proposer) ....... +ꜩ0.000676 - Transaction: - Amount: ꜩ0 - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" - "tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU" - 100) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(0)[0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6] to 100 - Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10688 - Storage size: 2401 bytes - Paid storage size diff: 68 bytes - Consumed gas: 3089.113 - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.017 - storage fees ........................... +ꜩ0.017 - - -./octez-client --mode mockup call KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 from bootstrap3 --entrypoint tokenToXtz --arg '(Pair "tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU" 100 0 "2050-01-01T00:00:00Z")' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 7082.329 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is 'opJHQtGsMm6n6hsovsN5LeksJQjisvdJmfJGFhrkn57YhnnUHXX' -NOT waiting for the operation to be included. -Use command - octez-client wait for opJHQtGsMm6n6hsovsN5LeksJQjisvdJmfJGFhrkn57YhnnUHXX to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisCCCCCeZiLHU -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - Fee to the baker: ꜩ0.001064 - Expected counter: 2 - Gas limit: 7183 - Storage limit: 0 bytes - Balance updates: - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... -ꜩ0.001064 - payload fees(the block proposer) ....... +ꜩ0.001064 - Transaction: - Amount: ꜩ0 - From: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - To: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - Entrypoint: tokenToXtz - Parameter: (Pair "tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU" 100 0 "2050-01-01T00:00:00Z") - This transaction was successfully applied - Updated storage: - { 10911 ; - 17828916091 ; - 2159830 ; - 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; - 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } - Storage size: 4636 bytes - Consumed gas: 920.795 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN - Entrypoint: transfer - Parameter: (Pair 0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6 - (Pair 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600 100)) - This transaction was successfully applied - Updated storage: - { 0 ; 1 ; 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 ; 100010000 } - Updated big_maps: - Set map(1)[(Pair 0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6 - 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 999999900 - Unset map(0)[0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6] - Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 10910 - Storage size: 2333 bytes - Consumed gas: 3904.087 - Internal Transaction: - Amount: ꜩ164.584923 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU - This transaction was successfully applied - Consumed gas: 100 - Balance updates: - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... -ꜩ164.584923 - tz1faswCTDciRzE4oJ9jn2Vm2dvjeyA9fUzU ... +ꜩ164.584923 - Internal Transaction: - Amount: ꜩ0.16475 - From: KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 - To: tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU - This transaction was successfully applied - Consumed gas: 100 - Balance updates: - KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5 ... -ꜩ0.16475 - tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU ... +ꜩ0.16475 - - -./octez-client --mode mockup get contract storage for KT1AafHA1C1vk959wvHWBispY9Y2f3fxBUUo -Pair 2 3 "KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5" 2159830 - -./octez-client --mode mockup get contract storage for KT1VqarPDicMFn1ejmQqqshUkUXTCTXwmkCN -Pair 0 1 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" 100010000 diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert.out deleted file mode 100644 index 5931ced0f288..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert.out +++ /dev/null @@ -1,8 +0,0 @@ -{ parameter bool ; - storage unit ; - code { CAR ; - { IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpeq.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpeq.out deleted file mode 100644 index bbe353a76a18..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpeq.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpge.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpge.out deleted file mode 100644 index d56c3a72c717..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpge.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; GE } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpgt.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpgt.out deleted file mode 100644 index ad6419cc57af..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpgt.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; GT } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmple.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmple.out deleted file mode 100644 index 80d82ea4eb1e..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmple.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; LE } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmplt.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmplt.out deleted file mode 100644 index a0b5c69b4c90..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmplt.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; LT } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpneq.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpneq.out deleted file mode 100644 index 9ae5ea93cbd0..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_cmpneq.out +++ /dev/null @@ -1,11 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - { { COMPARE ; NEQ } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_eq.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_eq.out deleted file mode 100644 index ddbecad17d4a..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_eq.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { EQ ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_ge.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_ge.out deleted file mode 100644 index d4c1645d0517..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_ge.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { GE ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_gt.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_gt.out deleted file mode 100644 index 6cf69f3845cf..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_gt.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { GT ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_le.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_le.out deleted file mode 100644 index 81938328c570..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_le.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { LE ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_lt.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_lt.out deleted file mode 100644 index 3faecebbb2be..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_lt.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { LT ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_neq.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_neq.out deleted file mode 100644 index 97ad56e0faf1..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-assert_neq.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - { NEQ ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_get_add.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_get_add.out deleted file mode 100644 index fd1950c5e72d..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_get_add.out +++ /dev/null @@ -1,22 +0,0 @@ -{ parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; - storage (pair (big_map int int) unit) ; - code { DUP ; - DIP { { CDR ; CAR } } ; - DUP ; - DIP { { CAR ; CDR } ; DUP ; CAR ; DIP { CDR } ; UPDATE ; DUP } ; - { CAR ; CDR } ; - DUP ; - CDR ; - DIP { CAR ; GET } ; - { IF_NONE - { { IF_NONE {} { { UNIT ; FAILWITH } } } } - { SWAP ; - { IF_NONE - { { UNIT ; FAILWITH } } - { { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } } } } } ; - UNIT ; - SWAP ; - PAIR ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_mem.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_mem.out deleted file mode 100644 index 7f58503d9114..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-big_map_mem.out +++ /dev/null @@ -1,13 +0,0 @@ -{ parameter (pair int bool) ; - storage (pair (big_map int unit) unit) ; - code { DUP ; - DUP ; - { CAR ; CDR } ; - DIP { { CAR ; CAR } ; DIP { { CDR ; CAR } ; DUP } ; MEM } ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - UNIT ; - SWAP ; - PAIR ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-build_list.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-build_list.out deleted file mode 100644 index 4ef9f940b1d0..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-build_list.out +++ /dev/null @@ -1,23 +0,0 @@ -{ parameter nat ; - storage (list nat) ; - code { CAR @counter ; - NIL @acc nat ; - SWAP ; - DUP @cmp_num ; - PUSH nat 0 ; - { COMPARE ; NEQ } ; - LOOP { DUP ; - DIP { SWAP } ; - CONS @acc ; - SWAP ; - PUSH nat 1 ; - SWAP ; - SUB @counter ; - DUP ; - DIP { ABS } ; - PUSH int 0 ; - { COMPARE ; NEQ } } ; - CONS ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-carn_and_cdrn.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-carn_and_cdrn.out deleted file mode 100644 index 4cda8ad36989..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-carn_and_cdrn.out +++ /dev/null @@ -1,28 +0,0 @@ -{ parameter (pair nat nat nat unit) ; - storage unit ; - code { CAR ; - DUP ; - CAR ; - PUSH nat 1 ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - DUP ; - { GET 1 } ; - PUSH nat 1 ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - DUP ; - { GET 3 } ; - PUSH nat 4 ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - DUP ; - { GET 5 } ; - PUSH nat 2 ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - DUP ; - { GET 6 } ; - UNIT ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - DROP ; - UNIT ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare.out deleted file mode 100644 index 4292f6769b91..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare.out +++ /dev/null @@ -1,21 +0,0 @@ -{ parameter (pair mutez mutez) ; - storage (list bool) ; - code { CAR ; - DUP ; - DUP ; - DUP ; - DUP ; - DIP 5 { NIL bool } ; - DIP 4 { DUP ; CAR ; DIP { CDR } ; COMPARE ; LE ; CONS } ; - DIP 3 { DUP ; CAR ; DIP { CDR } ; COMPARE ; GE ; CONS } ; - DIP 2 { DUP ; CAR ; DIP { CDR } ; COMPARE ; LT ; CONS } ; - DIP { DUP ; CAR ; DIP { CDR } ; COMPARE ; GT ; CONS } ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - EQ ; - CONS ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare_bytes.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare_bytes.out deleted file mode 100644 index 0b52eb3a3741..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-compare_bytes.out +++ /dev/null @@ -1,21 +0,0 @@ -{ parameter (pair bytes bytes) ; - storage (list bool) ; - code { CAR ; - DUP ; - DUP ; - DUP ; - DUP ; - DIP 5 { NIL bool } ; - DIP 4 { DUP ; CAR ; DIP { CDR } ; COMPARE ; LE ; CONS } ; - DIP 3 { DUP ; CAR ; DIP { CDR } ; COMPARE ; GE ; CONS } ; - DIP 2 { DUP ; CAR ; DIP { CDR } ; COMPARE ; LT ; CONS } ; - DIP { DUP ; CAR ; DIP { CDR } ; COMPARE ; GT ; CONS } ; - DUP ; - CAR ; - DIP { CDR } ; - COMPARE ; - EQ ; - CONS ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-fail.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-fail.out deleted file mode 100644 index a3007c04a48a..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-fail.out +++ /dev/null @@ -1,2 +0,0 @@ -{ parameter unit ; storage unit ; code { { UNIT ; FAILWITH } } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-guestbook.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-guestbook.out deleted file mode 100644 index 007315d9f5c1..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-guestbook.out +++ /dev/null @@ -1,17 +0,0 @@ -{ parameter string ; - storage (map address (option string)) ; - code { UNPAIR @message @guestbook ; - SWAP ; - DUP ; - SENDER ; - GET @previous_message ; - { IF_NONE { { UNIT ; FAILWITH } } {} } ; - { IF_NONE {} { { UNIT ; FAILWITH } } } ; - SWAP ; - SOME ; - SOME ; - SENDER ; - UPDATE ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-macro_annotations.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-macro_annotations.out deleted file mode 100644 index e0004b030af0..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-macro_annotations.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter unit ; - storage (pair (unit %truc) unit) ; - code { DROP ; - UNIT ; - UNIT ; - PAIR %truc ; - UNIT ; - DUP @new_storage 2 ; - DIP { DROP ; DROP } ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-map_caddaadr.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-map_caddaadr.out deleted file mode 100644 index 58b5cf2acdee..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-map_caddaadr.out +++ /dev/null @@ -1,39 +0,0 @@ -{ parameter unit ; - storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; - code { { DUP ; - DIP { CDR @%% ; - { DUP ; - DIP { CAR @%% ; - { DUP ; - DIP { CDR @%% ; - { DUP ; - DIP { CDR @%% ; - { DUP ; - DIP { CAR @%% ; - { DUP ; - DIP { CAR @%% ; - { DUP ; - CDR @value ; - { PUSH mutez 1000000 ; ADD } ; - SWAP ; - CAR @%% ; - PAIR %@ %value } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ } } ; - CAR @%% ; - PAIR %@ %@ } } ; - CAR @%% ; - PAIR %@ %@ } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ } } ; - CAR @%% ; - PAIR %@ %@ @new_storage } ; - NIL operation ; - SWAP ; - { CDR @%% ; SWAP ; PAIR % %@ } } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-max_in_list.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-max_in_list.out deleted file mode 100644 index 73b02aecae21..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-max_in_list.out +++ /dev/null @@ -1,16 +0,0 @@ -{ parameter (list int) ; - storage (option int) ; - code { CAR ; - DIP { NONE int } ; - ITER { SWAP ; - IF_NONE - { SOME } - { DIP { DUP } ; - DUP ; - DIP { SWAP } ; - { COMPARE ; LE } ; - IF { DROP } { DIP { DROP } } ; - SOME } } ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-min.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-min.out deleted file mode 100644 index 25b53381539f..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-min.out +++ /dev/null @@ -1,12 +0,0 @@ -{ parameter (pair int int) ; - storage int ; - code { CAR ; - DUP ; - DUP ; - CAR ; - DIP { CDR } ; - { COMPARE ; LT } ; - IF { CAR } { CDR } ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-pair_macro.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-pair_macro.out deleted file mode 100644 index c690e041b539..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-pair_macro.out +++ /dev/null @@ -1,17 +0,0 @@ -{ parameter unit ; - storage unit ; - code { UNIT ; - UNIT ; - UNIT ; - UNIT ; - UNIT ; - { DIP 3 { PAIR %x4 %x5 } ; - DIP 2 { PAIR %x3 } ; - DIP { PAIR %x2 } ; - PAIR %x1 @name } ; - { CDR ; CDR ; CDR ; CAR %x4 @fourth } ; - DROP ; - CDR ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-set_caddaadr.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-set_caddaadr.out deleted file mode 100644 index 40e1f41cf5b3..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-set_caddaadr.out +++ /dev/null @@ -1,32 +0,0 @@ -{ parameter mutez ; - storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; - code { DUP ; - CAR ; - SWAP ; - CDR ; - { DUP ; - DIP { CAR @%% ; - { DUP ; - DIP { CDR @%% ; - { DUP ; - DIP { CDR @%% ; - { DUP ; - DIP { CAR @%% ; - { DUP ; - DIP { CAR @%% ; { DUP ; CDR %value ; DROP ; CAR @%% ; PAIR %@ %value } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ } } ; - CAR @%% ; - PAIR %@ %@ } } ; - CAR @%% ; - PAIR %@ %@ } } ; - CDR @%% ; - SWAP ; - PAIR %@ %@ @toplevel_pair_name } ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-take_my_money.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-take_my_money.out deleted file mode 100644 index e337e046dd67..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-take_my_money.out +++ /dev/null @@ -1,13 +0,0 @@ -{ parameter key_hash ; - storage unit ; - code { CAR ; - IMPLICIT_ACCOUNT ; - DIP { UNIT } ; - PUSH mutez 1000000 ; - UNIT ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } } - diff --git a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-unpair_macro.out b/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-unpair_macro.out deleted file mode 100644 index 54c838c9052c..000000000000 --- a/tezt/tests/expected/contract_macros.ml/Nairobi- Macro expansion- macros-unpair_macro.out +++ /dev/null @@ -1,19 +0,0 @@ -{ parameter (unit :param_unit) ; - storage (unit :u1) ; - code { DROP ; - UNIT :u4 @a4 ; - UNIT :u3 @a3 ; - UNIT :u2 @a2 ; - UNIT :u1 @a1 ; - PAIR ; - UNPAIR @x1 @x2 ; - { DIP 2 { PAIR %x3 %x4 } ; PAIR %x1 %x2 ; PAIR @p1 } ; - { UNPAIR ; UNPAIR ; DIP 2 { UNPAIR } } ; - { DIP 2 { PAIR %x3 %x4 } ; DIP { PAIR %x2 } ; PAIR %x1 @p2 } ; - { UNPAIR ; DIP { UNPAIR } ; DIP 2 { UNPAIR } } ; - { DIP { PAIR %x2 %x3 } ; DIP { PAIR % %x4 } ; PAIR %x1 @p3 } ; - { UNPAIR ; DIP { UNPAIR } ; DIP { UNPAIR } } ; - DIP { DROP ; DROP ; DROP } ; - NIL operation ; - PAIR } } - diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_big_map_origination.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_big_map_origination.out deleted file mode 100644 index 2d99ef9edbf7..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_big_map_origination.out +++ /dev/null @@ -1,148 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract originate_big_map transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/originate_big_map.tz --init '{Elt 0 0}' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 813.277 units (will add 100 for safety) -Estimated storage: 403 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000374 - Expected counter: 1 - Gas limit: 914 - Storage limit: 423 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000374 - payload fees(the block proposer) ....... +ꜩ0.000374 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (big_map int int) ; - storage (big_map int int) ; - code { CAR ; NIL operation ; PAIR } } - Initial storage: { Elt 0 0 } - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 146 bytes - Updated big_maps: - New map(4) of type (big_map int int) - Set map(4)[0] to 0 - Paid storage size diff: 146 bytes - Consumed gas: 813.244 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0365 - storage fees ........................... +ꜩ0.0365 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as originate_big_map. - -./octez-client --mode mockup --wait none originate contract originate_big_map transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/originate_big_map.tz --init 0 --burn-cap 10 --force -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (big_map int int) ; - storage (big_map int int) ; - code { CAR ; NIL operation ; PAIR } } - Initial storage: 0 - No delegate for this contract - This operation FAILED. - -Ill typed data: 1: 0 is not an expression of type big_map int int -At line 1 characters 0 to 1, value 0 is invalid for type big_map int int. -At line 1 characters 0 to 1, -Unexpected forged value. -Fatal error: - origination simulation failed - -./octez-client --mode mockup --wait none originate contract originate_big_map transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/originate_big_map.tz --init 'Pair 0 {Elt 1 (Some 4)}' --burn-cap 10 --force -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (big_map int int) ; - storage (big_map int int) ; - code { CAR ; NIL operation ; PAIR } } - Initial storage: (Pair 0 { Elt 1 (Some 4) }) - No delegate for this contract - This operation FAILED. - -Ill typed data: 1: (Pair 0 { Elt 1 (Some 4) }) -is not an expression of type big_map int int -At line 1 characters 0 to 26, value (Pair 0 { Elt 1 (Some 4) }) -is invalid for type big_map int int. -At line 1 characters 6 to 7, -Unexpected forged value. -Fatal error: - origination simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 0 -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: 0 - This operation FAILED. - -Invalid argument passed to contract [CONTRACT_HASH]. -At (unshown) location 0, value 0 is invalid for type big_map int int. -At (unshown) location 0, Unexpected forged value. -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 'Pair 0 {Elt 1 (Some 4)}' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0 { Elt 1 (Some 4) }) - This operation FAILED. - -Invalid argument passed to contract [CONTRACT_HASH]. -At (unshown) location 0, value (Pair 0 { Elt 1 (Some 4) }) -is invalid for type big_map int int. -At (unshown) location 1, Unexpected forged value. -Fatal error: - transfer simulation failed diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_contract_fails.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_contract_fails.out deleted file mode 100644 index 52363e3275f2..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_contract_fails.out +++ /dev/null @@ -1,70 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract contract transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/contract.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 589.326 units (will add 100 for safety) -Estimated storage: 329 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000368 - Expected counter: 1 - Gas limit: 690 - Storage limit: 349 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000368 - payload fees(the block proposer) ....... +ꜩ0.000368 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter address ; - storage unit ; - code { CAR ; CONTRACT unit ; ASSERT_SOME ; DROP ; UNIT ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 72 bytes - Paid storage size diff: 72 bytes - Consumed gas: 589.292 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.018 - storage fees ........................... +ꜩ0.018 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as contract. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 1: { parameter address ; - 2: storage unit ; - 3: code { CAR ; CONTRACT unit ; ASSERT_SOME ; DROP ; UNIT ; NIL operation ; PAIR } } -At line 3 characters 31 to 42, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_level.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_level.out deleted file mode 100644 index a3df0bfbc726..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_level.out +++ /dev/null @@ -1,113 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract level transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/level.tz --init 9999999 --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 579.583 units (will add 100 for safety) -Estimated storage: 300 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000338 - Expected counter: 1 - Gas limit: 680 - Storage limit: 320 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000338 - payload fees(the block proposer) ....... +ꜩ0.000338 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage nat ; - code { DROP ; LEVEL ; NIL operation ; PAIR } } - Initial storage: 9999999 - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 43 bytes - Paid storage size diff: 43 bytes - Consumed gas: 579.550 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01075 - storage fees ........................... +ꜩ0.01075 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as level. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1277.169 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 2 - Gas limit: 1378 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 1 - Storage size: 40 bytes - Consumed gas: 1277.927 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -1 - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -1 - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1277.867 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 3 - Gas limit: 1378 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 4 - Storage size: 40 bytes - Consumed gas: 1277.801 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -4 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_now.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_now.out deleted file mode 100644 index 676531058c2f..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_now.out +++ /dev/null @@ -1,77 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract store_now transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/store_now.tz --init '"[TIMESTAMP]"' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 580.807 units (will add 100 for safety) -Estimated storage: 301 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000359 - Expected counter: 1 - Gas limit: 681 - Storage limit: 321 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000359 - payload fees(the block proposer) ....... +ꜩ0.000359 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage timestamp ; - code { DROP ; NOW ; NIL operation ; PAIR } } - Initial storage: "[TIMESTAMP]" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 44 bytes - Paid storage size diff: 44 bytes - Consumed gas: 580.774 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.011 - storage fees ........................... +ꜩ0.011 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as store_now. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1277.261 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 2 - Gas limit: 1378 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 1 - Storage size: 40 bytes - Consumed gas: 1277.969 - - -./octez-client --mode mockup rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/storage' -{ "string": "[TIMESTAMP]" } diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_self.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_self.out deleted file mode 100644 index b76634e92378..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_self.out +++ /dev/null @@ -1,77 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract self transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/self.tz --init '"[PUBLIC_KEY_HASH]"' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 586.690 units (will add 100 for safety) -Estimated storage: 324 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000377 - Expected counter: 1 - Gas limit: 687 - Storage limit: 344 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000377 - payload fees(the block proposer) ....... +ꜩ0.000377 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage address ; - code { DROP ; SELF ; ADDRESS ; NIL operation ; PAIR } } - Initial storage: "[PUBLIC_KEY_HASH]" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 67 bytes - Paid storage size diff: 67 bytes - Consumed gas: 586.657 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01675 - storage fees ........................... +ꜩ0.01675 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as self. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1279.543 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 2 - Gas limit: 1380 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 0x01fabd76c7ade40ef0e6a7b2be514d9e617e0a424800 - Storage size: 67 bytes - Consumed gas: 1280.208 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"[CONTRACT_HASH]" diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_sender.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_sender.out deleted file mode 100644 index cbefc4d7f435..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_sender.out +++ /dev/null @@ -1,170 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract proxy transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/proxy.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 585.283 units (will add 100 for safety) -Estimated storage: 312 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000351 - Expected counter: 1 - Gas limit: 686 - Storage limit: 332 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000351 - payload fees(the block proposer) ....... +ꜩ0.000351 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (contract unit) ; - storage unit ; - code { UNPAIR ; - AMOUNT ; - UNIT ; - TRANSFER_TOKENS ; - DIP { NIL operation } ; - CONS ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 55 bytes - Paid storage size diff: 55 bytes - Consumed gas: 585.250 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01375 - storage fees ........................... +ꜩ0.01375 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as proxy. - -./octez-client --mode mockup --wait none originate contract sender transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/sender.tz --init '"[PUBLIC_KEY_HASH]"' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 585.553 units (will add 100 for safety) -Estimated storage: 322 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000375 - Expected counter: 2 - Gas limit: 686 - Storage limit: 342 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000375 - payload fees(the block proposer) ....... +ꜩ0.000375 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage address ; - code { DROP ; SENDER ; NIL operation ; PAIR } } - Initial storage: "[PUBLIC_KEY_HASH]" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 65 bytes - Paid storage size diff: 65 bytes - Consumed gas: 585.520 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01625 - storage fees ........................... +ꜩ0.01625 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as sender. - -./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1278.816 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 1 - Gas limit: 1379 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c - Storage size: 65 bytes - Consumed gas: 1279.481 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 2949.067 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000599 - Expected counter: 2 - Gas limit: 3050 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000599 - payload fees(the block proposer) ....... +ꜩ0.000599 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 55 bytes - Consumed gas: 1739.558 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 0x01c144b1848cb3943f64c69648f0b9e477d96c540600 - Storage size: 65 bytes - Consumed gas: 1210.819 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"[CONTRACT_HASH]" diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_set_delegate.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_set_delegate.out deleted file mode 100644 index 03702cee7769..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_set_delegate.out +++ /dev/null @@ -1,118 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract set_delegate transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/set_delegate.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 583.003 units (will add 100 for safety) -Estimated storage: 308 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000347 - Expected counter: 1 - Gas limit: 684 - Storage limit: 328 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000347 - payload fees(the block proposer) ....... +ꜩ0.000347 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (option key_hash) ; - storage unit ; - code { UNPAIR ; SET_DELEGATE ; DIP { NIL operation } ; CONS ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 51 bytes - Paid storage size diff: 51 bytes - Consumed gas: 582.970 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01275 - storage fees ........................... +ꜩ0.01275 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as set_delegate. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Some "[PUBLIC_KEY_HASH]")' -Node is bootstrapped. -Estimated gas: 1385.251 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000445 - Expected counter: 2 - Gas limit: 1486 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000445 - payload fees(the block proposer) ....... +ꜩ0.000445 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Some "[PUBLIC_KEY_HASH]") - This transaction was successfully applied - Updated storage: Unit - Storage size: 51 bytes - Consumed gas: 1285.916 - Internal operations: - Internal Delegation: - Contract: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - This delegation was successfully applied - Consumed gas: 100 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg None -Node is bootstrapped. -Estimated gas: 1379.373 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000403 - Expected counter: 3 - Gas limit: 1480 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000403 - payload fees(the block proposer) ....... +ꜩ0.000403 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: None - This transaction was successfully applied - Updated storage: Unit - Storage size: 51 bytes - Consumed gas: 1280.038 - Internal operations: - Internal Delegation: - Contract: [CONTRACT_HASH] - To: nobody - This delegation was successfully applied - Consumed gas: 100 - diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_slice.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_slice.out deleted file mode 100644 index 5b4b8f9047c0..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_slice.out +++ /dev/null @@ -1,461 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract slices transferring 1 from bootstrap1 running michelson_test_scripts/opcodes/slices.tz --init '"sppk7dBPqMPjDjXgKbb5f7V3PuKUrA4Zuwc3c3H7XqQerqPUWbK7Hna"' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 1079.522 units (will add 100 for safety) -Estimated storage: 835 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000946 - Expected counter: 1 - Gas limit: 1180 - Storage limit: 855 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000946 - payload fees(the block proposer) ....... +ꜩ0.000946 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ1 - Script: - { parameter (pair bytes signature) ; - storage key ; - code { DUP ; - CAAR ; - DUP ; - SIZE ; - PUSH nat 128 ; - SWAP ; - SUB ; - ISNAT ; - ASSERT_SOME ; - PUSH nat 128 ; - SLICE @payload ; - ASSERT_SOME ; - DUP ; - DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - SHA256 ; - ASSERT_CMPEQ } ; - DUP ; - DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - BLAKE2B ; - ASSERT_CMPEQ } ; - DUP ; - DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - SHA512 ; - ASSERT_CMPEQ } ; - DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - SWAP ; - DIP { SWAP } ; - CHECK_SIGNATURE ; - ASSERT ; - CDR ; - DUP ; - HASH_KEY ; - IMPLICIT_ACCOUNT ; - BALANCE ; - UNIT ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } } - Initial storage: - "sppk7dBPqMPjDjXgKbb5f7V3PuKUrA4Zuwc3c3H7XqQerqPUWbK7Hna" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 578 bytes - Paid storage size diff: 578 bytes - Consumed gas: 1079.489 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.1445 - storage fees ........................... +ꜩ0.1445 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -New contract [CONTRACT_HASH] originated. -Contract memorized as slices. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "p2sigsceCzcDw2AeYDzUonj4JT341WC9Px4wdhHBxbZcG1FhfqFVuG7f2fGCzrEHSAZgrsrQWpxduDPk9qZRgrpzwJnSHC3gZJ")' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 - "p2sigsceCzcDw2AeYDzUonj4JT341WC9Px4wdhHBxbZcG1FhfqFVuG7f2fGCzrEHSAZgrsrQWpxduDPk9qZRgrpzwJnSHC3gZJ") - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter (pair bytes signature) ; - 02: storage key ; - 03: code { DUP ; - 04: CAAR ; - 05: DUP ; - 06: SIZE ; - 07: PUSH nat 128 ; - 08: SWAP ; - 09: SUB ; - 10: ISNAT ; - 11: ASSERT_SOME ; - 12: PUSH nat 128 ; - 13: SLICE @payload ; - 14: ASSERT_SOME ; - 15: DUP ; - 16: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - 17: SHA256 ; - 18: ASSERT_CMPEQ } ; - 19: DUP ; - 20: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - 21: BLAKE2B ; - 22: ASSERT_CMPEQ } ; - 23: DUP ; - 24: DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - 25: SHA512 ; - 26: ASSERT_CMPEQ } ; - 27: DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - 28: SWAP ; - 29: DIP { SWAP } ; - 30: CHECK_SIGNATURE ; - 31: ASSERT ; - 32: CDR ; - 33: DUP ; - 34: HASH_KEY ; - 35: IMPLICIT_ACCOUNT ; - 36: BALANCE ; - 37: UNIT ; - 38: TRANSFER_TOKENS ; - 39: NIL operation ; - 40: SWAP ; - 41: CONS ; - 42: PAIR } } -At line 31 characters 9 to 15, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xeaa9ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xeaa9ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 - "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm") - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter (pair bytes signature) ; - 02: storage key ; - 03: code { DUP ; - 04: CAAR ; - 05: DUP ; - 06: SIZE ; - 07: PUSH nat 128 ; - 08: SWAP ; - 09: SUB ; - 10: ISNAT ; - 11: ASSERT_SOME ; - 12: PUSH nat 128 ; - 13: SLICE @payload ; - 14: ASSERT_SOME ; - 15: DUP ; - 16: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - 17: SHA256 ; - 18: ASSERT_CMPEQ } ; - 19: DUP ; - 20: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - 21: BLAKE2B ; - 22: ASSERT_CMPEQ } ; - 23: DUP ; - 24: DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - 25: SHA512 ; - 26: ASSERT_CMPEQ } ; - 27: DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - 28: SWAP ; - 29: DIP { SWAP } ; - 30: CHECK_SIGNATURE ; - 31: ASSERT ; - 32: CDR ; - 33: DUP ; - 34: HASH_KEY ; - 35: IMPLICIT_ACCOUNT ; - 36: BALANCE ; - 37: UNIT ; - 38: TRANSFER_TOKENS ; - 39: NIL operation ; - 40: SWAP ; - 41: CONS ; - 42: PAIR } } -At line 18 characters 15 to 27, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2deaad01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2deaad01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 - "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm") - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter (pair bytes signature) ; - 02: storage key ; - 03: code { DUP ; - 04: CAAR ; - 05: DUP ; - 06: SIZE ; - 07: PUSH nat 128 ; - 08: SWAP ; - 09: SUB ; - 10: ISNAT ; - 11: ASSERT_SOME ; - 12: PUSH nat 128 ; - 13: SLICE @payload ; - 14: ASSERT_SOME ; - 15: DUP ; - 16: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - 17: SHA256 ; - 18: ASSERT_CMPEQ } ; - 19: DUP ; - 20: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - 21: BLAKE2B ; - 22: ASSERT_CMPEQ } ; - 23: DUP ; - 24: DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - 25: SHA512 ; - 26: ASSERT_CMPEQ } ; - 27: DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - 28: SWAP ; - 29: DIP { SWAP } ; - 30: CHECK_SIGNATURE ; - 31: ASSERT ; - 32: CDR ; - 33: DUP ; - 34: HASH_KEY ; - 35: IMPLICIT_ACCOUNT ; - 36: BALANCE ; - 37: UNIT ; - 38: TRANSFER_TOKENS ; - 39: NIL operation ; - 40: SWAP ; - 41: CONS ; - 42: PAIR } } -At line 22 characters 15 to 27, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150733eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150733eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 - "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm") - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter (pair bytes signature) ; - 02: storage key ; - 03: code { DUP ; - 04: CAAR ; - 05: DUP ; - 06: SIZE ; - 07: PUSH nat 128 ; - 08: SWAP ; - 09: SUB ; - 10: ISNAT ; - 11: ASSERT_SOME ; - 12: PUSH nat 128 ; - 13: SLICE @payload ; - 14: ASSERT_SOME ; - 15: DUP ; - 16: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - 17: SHA256 ; - 18: ASSERT_CMPEQ } ; - 19: DUP ; - 20: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - 21: BLAKE2B ; - 22: ASSERT_CMPEQ } ; - 23: DUP ; - 24: DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - 25: SHA512 ; - 26: ASSERT_CMPEQ } ; - 27: DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - 28: SWAP ; - 29: DIP { SWAP } ; - 30: CHECK_SIGNATURE ; - 31: ASSERT ; - 32: CDR ; - 33: DUP ; - 34: HASH_KEY ; - 35: IMPLICIT_ACCOUNT ; - 36: BALANCE ; - 37: UNIT ; - 38: TRANSFER_TOKENS ; - 39: NIL operation ; - 40: SWAP ; - 41: CONS ; - 42: PAIR } } -At line 26 characters 15 to 27, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 2 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xe009ab79e8b84ef0 - "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm") - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter (pair bytes signature) ; - 02: storage key ; - 03: code { DUP ; - 04: CAAR ; - 05: DUP ; - 06: SIZE ; - 07: PUSH nat 128 ; - 08: SWAP ; - 09: SUB ; - 10: ISNAT ; - 11: ASSERT_SOME ; - 12: PUSH nat 128 ; - 13: SLICE @payload ; - 14: ASSERT_SOME ; - 15: DUP ; - 16: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 0 ; SLICE ; ASSERT_SOME } ; - 17: SHA256 ; - 18: ASSERT_CMPEQ } ; - 19: DUP ; - 20: DIP { DIP { DUP ; CAAR ; PUSH nat 32 ; PUSH nat 32 ; SLICE ; ASSERT_SOME } ; - 21: BLAKE2B ; - 22: ASSERT_CMPEQ } ; - 23: DUP ; - 24: DIP { DIP { DUP ; CAAR ; PUSH nat 64 ; PUSH nat 64 ; SLICE ; ASSERT_SOME } ; - 25: SHA512 ; - 26: ASSERT_CMPEQ } ; - 27: DIP { DUP ; CDR ; DIP { DUP ; CADR } } ; - 28: SWAP ; - 29: DIP { SWAP } ; - 30: CHECK_SIGNATURE ; - 31: ASSERT ; - 32: CDR ; - 33: DUP ; - 34: HASH_KEY ; - 35: IMPLICIT_ACCOUNT ; - 36: BALANCE ; - 37: UNIT ; - 38: TRANSFER_TOKENS ; - 39: NIL operation ; - 40: SWAP ; - 41: CONS ; - 42: PAIR } } -At line 11 characters 9 to 20, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' -Node is bootstrapped. -Estimated gas: 1625.970 units (will add 100 for safety) -Estimated storage: 257 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00068 - Expected counter: 2 - Gas limit: 1726 - Storage limit: 277 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00068 - payload fees(the block proposer) ....... +ꜩ0.00068 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 - "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm") - This transaction was successfully applied - Updated storage: - 0x0103fe5753baadb56a4836e34571ce4cbe82158ee40eba872b848f709699019725ba - Storage size: 578 bytes - Consumed gas: 1526.495 - Internal operations: - Internal Transaction: - Amount: ꜩ1 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - This transaction was successfully applied - Consumed gas: 100 - Balance updates: - [CONTRACT_HASH] ... -ꜩ1 - [PUBLIC_KEY_HASH] ... +ꜩ1 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_source.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_source.out deleted file mode 100644 index c0aca5beecd8..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_source.out +++ /dev/null @@ -1,170 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract proxy transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/proxy.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 585.283 units (will add 100 for safety) -Estimated storage: 312 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000351 - Expected counter: 1 - Gas limit: 686 - Storage limit: 332 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000351 - payload fees(the block proposer) ....... +ꜩ0.000351 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (contract unit) ; - storage unit ; - code { UNPAIR ; - AMOUNT ; - UNIT ; - TRANSFER_TOKENS ; - DIP { NIL operation } ; - CONS ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 55 bytes - Paid storage size diff: 55 bytes - Consumed gas: 585.250 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01375 - storage fees ........................... +ꜩ0.01375 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as proxy. - -./octez-client --mode mockup --wait none originate contract source transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/source.tz --init '"[PUBLIC_KEY_HASH]"' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 585.553 units (will add 100 for safety) -Estimated storage: 322 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000375 - Expected counter: 2 - Gas limit: 686 - Storage limit: 342 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000375 - payload fees(the block proposer) ....... +ꜩ0.000375 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage address ; - code { DROP ; SOURCE ; NIL operation ; PAIR } } - Initial storage: "[PUBLIC_KEY_HASH]" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 65 bytes - Paid storage size diff: 65 bytes - Consumed gas: 585.520 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01625 - storage fees ........................... +ꜩ0.01625 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as source. - -./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1278.816 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000386 - Expected counter: 1 - Gas limit: 1379 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000386 - payload fees(the block proposer) ....... +ꜩ0.000386 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c - Storage size: 65 bytes - Consumed gas: 1279.481 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"[PUBLIC_KEY_HASH]" - -./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 2949.067 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000599 - Expected counter: 2 - Gas limit: 3050 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000599 - payload fees(the block proposer) ....... +ꜩ0.000599 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 55 bytes - Consumed gas: 1739.558 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c - Storage size: 65 bytes - Consumed gas: 1210.819 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"[PUBLIC_KEY_HASH]" diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_bytes.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_bytes.out deleted file mode 100644 index 67ad38e33eb2..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_bytes.out +++ /dev/null @@ -1,142 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract split_bytes transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/split_bytes.tz --init '{}' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 650.005 units (will add 100 for safety) -Estimated storage: 511 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000557 - Expected counter: 1 - Gas limit: 751 - Storage limit: 531 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000557 - payload fees(the block proposer) ....... +ꜩ0.000557 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter bytes ; - storage (list bytes) ; - code { UNPAIR ; - DIP { NIL bytes ; SWAP ; ITER { CONS } } ; - DUP ; - SIZE ; - PUSH nat 0 ; - CMPNEQ ; - DIP { PUSH @index nat 0 } ; - LOOP { PAIR ; - DUP ; - DIP { UNPAIR ; DIP { PUSH nat 1 } ; SLICE ; ASSERT_SOME ; CONS @storage } ; - UNPAIR ; - PUSH nat 1 ; - ADD @index ; - DUP ; - DIP { DIP { DUP } ; SWAP ; SIZE ; CMPNEQ } ; - SWAP } ; - DROP ; - DROP ; - NIL bytes ; - SWAP ; - ITER { CONS } ; - NIL operation ; - PAIR } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 254 bytes - Paid storage size diff: 254 bytes - Consumed gas: 649.972 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0635 - storage fees ........................... +ꜩ0.0635 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as split_bytes. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 0xaabbcc -Node is bootstrapped. -Estimated gas: 1320.096 units (will add 100 for safety) -Estimated storage: 18 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000404 - Expected counter: 2 - Gas limit: 1421 - Storage limit: 38 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000404 - payload fees(the block proposer) ....... +ꜩ0.000404 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: 0xaabbcc - This transaction was successfully applied - Updated storage: { 0xaa ; 0xbb ; 0xcc } - Storage size: 272 bytes - Paid storage size diff: 18 bytes - Consumed gas: 1320.632 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0045 - storage fees ........................... +ꜩ0.0045 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -{ 0xaa ; 0xbb ; 0xcc } - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 0xddeeff -Node is bootstrapped. -Estimated gas: 1322.712 units (will add 100 for safety) -Estimated storage: 18 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000404 - Expected counter: 3 - Gas limit: 1423 - Storage limit: 38 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000404 - payload fees(the block proposer) ....... +ꜩ0.000404 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: 0xddeeff - This transaction was successfully applied - Updated storage: { 0xaa ; 0xbb ; 0xcc ; 0xdd ; 0xee ; 0xff } - Storage size: 290 bytes - Paid storage size diff: 18 bytes - Consumed gas: 1323.248 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0045 - storage fees ........................... +ꜩ0.0045 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -{ 0xaa ; 0xbb ; 0xcc ; 0xdd ; 0xee ; 0xff } diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_string.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_string.out deleted file mode 100644 index 367243708cbf..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_split_string.out +++ /dev/null @@ -1,142 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract split_string transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/split_string.tz --init '{}' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 650.005 units (will add 100 for safety) -Estimated storage: 511 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000557 - Expected counter: 1 - Gas limit: 751 - Storage limit: 531 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000557 - payload fees(the block proposer) ....... +ꜩ0.000557 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter string ; - storage (list string) ; - code { UNPAIR ; - DIP { NIL string ; SWAP ; ITER { CONS } } ; - DUP ; - SIZE ; - PUSH nat 0 ; - CMPNEQ ; - DIP { PUSH @index nat 0 } ; - LOOP { PAIR ; - DUP ; - DIP { UNPAIR ; DIP { PUSH nat 1 } ; SLICE ; ASSERT_SOME ; CONS @storage } ; - UNPAIR ; - PUSH nat 1 ; - ADD @index ; - DUP ; - DIP { DIP { DUP } ; SWAP ; SIZE ; CMPNEQ } ; - SWAP } ; - DROP ; - DROP ; - NIL string ; - SWAP ; - ITER { CONS } ; - NIL operation ; - PAIR } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 254 bytes - Paid storage size diff: 254 bytes - Consumed gas: 649.972 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0635 - storage fees ........................... +ꜩ0.0635 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as split_string. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"abc"' -Node is bootstrapped. -Estimated gas: 1320.160 units (will add 100 for safety) -Estimated storage: 18 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000404 - Expected counter: 2 - Gas limit: 1421 - Storage limit: 38 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000404 - payload fees(the block proposer) ....... +ꜩ0.000404 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "abc" - This transaction was successfully applied - Updated storage: { "a" ; "b" ; "c" } - Storage size: 272 bytes - Paid storage size diff: 18 bytes - Consumed gas: 1320.696 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0045 - storage fees ........................... +ꜩ0.0045 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -{ "a" ; "b" ; "c" } - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"def"' -Node is bootstrapped. -Estimated gas: 1322.848 units (will add 100 for safety) -Estimated storage: 18 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000404 - Expected counter: 3 - Gas limit: 1423 - Storage limit: 38 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000404 - payload fees(the block proposer) ....... +ꜩ0.000404 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "def" - This transaction was successfully applied - Updated storage: { "a" ; "b" ; "c" ; "d" ; "e" ; "f" } - Storage size: 290 bytes - Paid storage size diff: 18 bytes - Consumed gas: 1323.384 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0045 - storage fees ........................... +ꜩ0.0045 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -{ "a" ; "b" ; "c" ; "d" ; "e" ; "f" } diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_store_input.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_store_input.out deleted file mode 100644 index 35dc0cc7a902..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_store_input.out +++ /dev/null @@ -1,116 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract store_input transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/store_input.tz --init '""' --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 578.389 units (will add 100 for safety) -Estimated storage: 298 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000336 - Expected counter: 1 - Gas limit: 679 - Storage limit: 318 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000336 - payload fees(the block proposer) ....... +ꜩ0.000336 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter string ; - storage string ; - code { CAR ; NIL operation ; PAIR } } - Initial storage: "" - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 41 bytes - Paid storage size diff: 41 bytes - Consumed gas: 578.356 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01025 - storage fees ........................... +ꜩ0.01025 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as store_input. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"abcdefg"' -Node is bootstrapped. -Estimated gas: 1277.562 units (will add 100 for safety) -Estimated storage: 7 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000403 - Expected counter: 2 - Gas limit: 1378 - Storage limit: 27 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000403 - payload fees(the block proposer) ....... +ꜩ0.000403 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "abcdefg" - This transaction was successfully applied - Updated storage: "abcdefg" - Storage size: 48 bytes - Paid storage size diff: 7 bytes - Consumed gas: 1278.270 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00175 - storage fees ........................... +ꜩ0.00175 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"abcdefg" - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"xyz"' -Node is bootstrapped. -Estimated gas: 1277.578 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000399 - Expected counter: 3 - Gas limit: 1378 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000399 - payload fees(the block proposer) ....... +ꜩ0.000399 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "xyz" - This transaction was successfully applied - Updated storage: "xyz" - Storage size: 44 bytes - Consumed gas: 1278.286 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -"xyz" diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type.out deleted file mode 100644 index f85e5501f520..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type.out +++ /dev/null @@ -1,89 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract compare_big_type transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/compare_big_type.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 1611.480 units (will add 100 for safety) -Estimated storage: 385 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 1 - Gas limit: 1712 - Storage limit: 405 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage unit ; - code { DROP ; - PUSH nat 0 ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DROP ; - UNIT ; - NIL operation ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 128 bytes - Paid storage size diff: 128 bytes - Consumed gas: 1611.446 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.032 - storage fees ........................... +ꜩ0.032 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as compare_big_type. diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type2.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type2.out deleted file mode 100644 index eb6d41f503cf..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_trace_origination_compare_big_type2.out +++ /dev/null @@ -1,93 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract compare_big_type2 transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/compare_big_type2.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 1771.634 units (will add 100 for safety) -Estimated storage: 393 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000551 - Expected counter: 1 - Gas limit: 1872 - Storage limit: 413 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000551 - payload fees(the block proposer) ....... +ꜩ0.000551 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage unit ; - code { DROP ; - PUSH nat 0 ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - PAIR ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DUP ; - DUP ; - COMPARE ; - DROP ; - DROP ; - UNIT ; - NIL operation ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 136 bytes - Paid storage size diff: 136 bytes - Consumed gas: 1771.600 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.034 - storage fees ........................... +ꜩ0.034 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as compare_big_type2. diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_amount.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_amount.out deleted file mode 100644 index ae1459b4b668..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_amount.out +++ /dev/null @@ -1,83 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract transfer_amount transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/transfer_amount.tz --init 0 --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 579.262 units (will add 100 for safety) -Estimated storage: 297 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000335 - Expected counter: 1 - Gas limit: 680 - Storage limit: 317 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000335 - payload fees(the block proposer) ....... +ꜩ0.000335 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage mutez ; - code { DROP ; AMOUNT ; NIL operation ; PAIR } } - Initial storage: 0 - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 40 bytes - Paid storage size diff: 40 bytes - Consumed gas: 579.228 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01 - storage fees ........................... +ꜩ0.01 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as transfer_amount. - -./octez-client --mode mockup --wait none transfer 500 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg Unit -Node is bootstrapped. -Estimated gas: 1277.435 units (will add 100 for safety) -Estimated storage: 4 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00039 - Expected counter: 2 - Gas limit: 1378 - Storage limit: 24 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00039 - payload fees(the block proposer) ....... +ꜩ0.00039 - Transaction: - Amount: ꜩ500 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: 500000000 - Storage size: 44 bytes - Paid storage size diff: 4 bytes - Consumed gas: 1278.100 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.001 - storage fees ........................... +ꜩ0.001 - [PUBLIC_KEY_HASH] ... -ꜩ500 - [CONTRACT_HASH] ... +ꜩ500 - - -./octez-client --mode mockup get contract storage for '[CONTRACT_HASH]' -500000000 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_tokens.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_tokens.out deleted file mode 100644 index 5f824663924f..000000000000 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Nairobi- Contract onchain opcodes- test_transfer_tokens.out +++ /dev/null @@ -1,228 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract test_transfer_contract1 transferring 100 from bootstrap1 running michelson_test_scripts/opcodes/noop.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 578.303 units (will add 100 for safety) -Estimated storage: 295 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000336 - Expected counter: 1 - Gas limit: 679 - Storage limit: 315 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000336 - payload fees(the block proposer) ....... +ꜩ0.000336 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ100 - Script: - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 38 bytes - Paid storage size diff: 38 bytes - Consumed gas: 578.270 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0095 - storage fees ........................... +ꜩ0.0095 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ100 - [CONTRACT_HASH] ... +ꜩ100 - -New contract [CONTRACT_HASH] originated. -Contract memorized as test_transfer_contract1. - -./octez-client --mode mockup --wait none originate contract test_transfer_contract2 transferring 20 from bootstrap1 running michelson_test_scripts/opcodes/noop.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 578.303 units (will add 100 for safety) -Estimated storage: 295 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000336 - Expected counter: 2 - Gas limit: 679 - Storage limit: 315 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000336 - payload fees(the block proposer) ....... +ꜩ0.000336 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ20 - Script: - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 38 bytes - Paid storage size diff: 38 bytes - Consumed gas: 578.270 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0095 - storage fees ........................... +ꜩ0.0095 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ20 - [CONTRACT_HASH] ... +ꜩ20 - -New contract [CONTRACT_HASH] originated. -Contract memorized as test_transfer_contract2. - -./octez-client --mode mockup --wait none originate contract transfer_tokens transferring 1000 from bootstrap1 running michelson_test_scripts/opcodes/transfer_tokens.tz --burn-cap 10 --force -Node is bootstrapped. -Estimated gas: 589.415 units (will add 100 for safety) -Estimated storage: 323 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000366 - Expected counter: 3 - Gas limit: 690 - Storage limit: 343 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000366 - payload fees(the block proposer) ....... +ꜩ0.000366 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ1000 - Script: - { parameter (contract unit) ; - storage unit ; - code { CAR ; - DIP { UNIT } ; - PUSH mutez 100000000 ; - UNIT ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 66 bytes - Paid storage size diff: 66 bytes - Consumed gas: 589.382 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ1000 - [CONTRACT_HASH] ... +ꜩ1000 - -New contract [CONTRACT_HASH] originated. -Contract memorized as transfer_tokens. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 2948.774 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000599 - Expected counter: 4 - Gas limit: 3049 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000599 - payload fees(the block proposer) ....... +ꜩ0.000599 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 66 bytes - Consumed gas: 1741.557 - Internal operations: - Internal Transaction: - Amount: ꜩ100 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: Unit - Storage size: 38 bytes - Consumed gas: 1208.441 - Balance updates: - [CONTRACT_HASH] ... -ꜩ100 - [CONTRACT_HASH] ... +ꜩ100 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 2948.774 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000599 - Expected counter: 5 - Gas limit: 3049 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000599 - payload fees(the block proposer) ....... +ꜩ0.000599 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 66 bytes - Consumed gas: 1741.557 - Internal operations: - Internal Transaction: - Amount: ꜩ100 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: Unit - Storage size: 38 bytes - Consumed gas: 1208.441 - Balance updates: - [CONTRACT_HASH] ... -ꜩ100 - [CONTRACT_HASH] ... +ꜩ100 - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input254251340-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input254251340-.out deleted file mode 100644 index 05db820e0c01..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input254251340-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 948 --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.211) - [ (Pair 948 Unit) ] - - location: 7 (just consumed gas: 0.010) - [ 948 ] - - location: 8 (just consumed gas: 0.010) - [ 948 - 948 ] - - location: 9 (just consumed gas: 0.026) - [ -948 - 948 ] - - location: 10 (just consumed gas: 0.021) - [ 948 - 948 ] - - location: 11 (just consumed gas: 0.035) - [ 0 ] - - location: 13 (just consumed gas: 0.010) - [ True ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 14 (just consumed gas: 0.015) - [ ] - - location: 20 (just consumed gas: 0.010) - [ Unit ] - - location: 21 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input420401245-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input420401245-.out deleted file mode 100644 index c6d8ba329449..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input420401245-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 12039123919239192312931 --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.211) - [ (Pair 12039123919239192312931 Unit) ] - - location: 7 (just consumed gas: 0.010) - [ 12039123919239192312931 ] - - location: 8 (just consumed gas: 0.010) - [ 12039123919239192312931 - 12039123919239192312931 ] - - location: 9 (just consumed gas: 0.030) - [ -12039123919239192312931 - 12039123919239192312931 ] - - location: 10 (just consumed gas: 0.025) - [ 12039123919239192312931 - 12039123919239192312931 ] - - location: 11 (just consumed gas: 0.035) - [ 0 ] - - location: 13 (just consumed gas: 0.010) - [ True ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 14 (just consumed gas: 0.015) - [ ] - - location: 20 (just consumed gas: 0.010) - [ Unit ] - - location: 21 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input680650890-.out deleted file mode 100644 index 680376f17c75..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -abs--storage125992234--input680650890-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/abs.tz on storage Unit and input 0 --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.211) - [ (Pair 0 Unit) ] - - location: 7 (just consumed gas: 0.010) - [ 0 ] - - location: 8 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 9 (just consumed gas: 0.025) - [ 0 - 0 ] - - location: 10 (just consumed gas: 0.020) - [ 0 - 0 ] - - location: 11 (just consumed gas: 0.035) - [ 0 ] - - location: 13 (just consumed gas: 0.010) - [ True ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 14 (just consumed gas: 0.015) - [ ] - - location: 20 (just consumed gas: 0.010) - [ Unit ] - - location: 21 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add--storage125992234--input125992234-.out deleted file mode 100644 index 7550baa2ac5f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add--storage125992234--input125992234-.out +++ /dev/null @@ -1,211 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 68.449) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ Unit ] - - location: 8 (just consumed gas: 0.010) - [ 2 - Unit ] - - location: 11 (just consumed gas: 0.010) - [ 2 - 2 - Unit ] - - location: 14 (just consumed gas: 0.035) - [ 4 - Unit ] - - location: 15 (just consumed gas: 0.010) - [ 4 - 4 - Unit ] - - location: 20 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 21 (just consumed gas: 0.010) - [ True - Unit ] - - location: 22 (just consumed gas: 0) - [ Unit ] - - location: 22 (just consumed gas: 0.015) - [ Unit ] - - location: 28 (just consumed gas: 0.010) - [ 2 - Unit ] - - location: 31 (just consumed gas: 0.010) - [ 2 - 2 - Unit ] - - location: 34 (just consumed gas: 0.035) - [ 4 - Unit ] - - location: 35 (just consumed gas: 0.010) - [ 4 - 4 - Unit ] - - location: 40 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 41 (just consumed gas: 0.010) - [ True - Unit ] - - location: 42 (just consumed gas: 0) - [ Unit ] - - location: 42 (just consumed gas: 0.015) - [ Unit ] - - location: 48 (just consumed gas: 0.010) - [ 2 - Unit ] - - location: 51 (just consumed gas: 0.010) - [ 2 - 2 - Unit ] - - location: 54 (just consumed gas: 0.035) - [ 4 - Unit ] - - location: 55 (just consumed gas: 0.010) - [ 4 - 4 - Unit ] - - location: 60 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 61 (just consumed gas: 0.010) - [ True - Unit ] - - location: 62 (just consumed gas: 0) - [ Unit ] - - location: 62 (just consumed gas: 0.015) - [ Unit ] - - location: 68 (just consumed gas: 0.010) - [ 2 - Unit ] - - location: 71 (just consumed gas: 0.010) - [ 2 - 2 - Unit ] - - location: 74 (just consumed gas: 0.035) - [ 4 - Unit ] - - location: 75 (just consumed gas: 0.010) - [ 4 - 4 - Unit ] - - location: 80 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 81 (just consumed gas: 0.010) - [ True - Unit ] - - location: 82 (just consumed gas: 0) - [ Unit ] - - location: 82 (just consumed gas: 0.015) - [ Unit ] - - location: 88 (just consumed gas: 0.010) - [ 2 - Unit ] - - location: 91 (just consumed gas: 0.010) - [ 2 - 2 - Unit ] - - location: 94 (just consumed gas: 0.035) - [ 4 - Unit ] - - location: 95 (just consumed gas: 0.010) - [ 4 - 4 - Unit ] - - location: 100 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 101 (just consumed gas: 0.010) - [ True - Unit ] - - location: 102 (just consumed gas: 0) - [ Unit ] - - location: 102 (just consumed gas: 0.015) - [ Unit ] - - location: 108 (just consumed gas: 0.010) - [ 60 - Unit ] - - location: 111 (just consumed gas: 0.010) - [ "2019-09-09T12:08:37Z" - 60 - Unit ] - - location: 114 (just consumed gas: 0.037) - [ "2019-09-09T12:09:37Z" - Unit ] - - location: 115 (just consumed gas: 0.010) - [ "2019-09-09T12:09:37Z" - "2019-09-09T12:09:37Z" - Unit ] - - location: 120 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 121 (just consumed gas: 0.010) - [ True - Unit ] - - location: 122 (just consumed gas: 0) - [ Unit ] - - location: 122 (just consumed gas: 0.015) - [ Unit ] - - location: 128 (just consumed gas: 0.010) - [ "2019-09-09T12:08:37Z" - Unit ] - - location: 131 (just consumed gas: 0.010) - [ 60 - "2019-09-09T12:08:37Z" - Unit ] - - location: 134 (just consumed gas: 0.037) - [ "2019-09-09T12:09:37Z" - Unit ] - - location: 135 (just consumed gas: 0.010) - [ "2019-09-09T12:09:37Z" - "2019-09-09T12:09:37Z" - Unit ] - - location: 140 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 141 (just consumed gas: 0.010) - [ True - Unit ] - - location: 142 (just consumed gas: 0) - [ Unit ] - - location: 142 (just consumed gas: 0.015) - [ Unit ] - - location: 148 (just consumed gas: 0.010) - [ 1000 - Unit ] - - location: 151 (just consumed gas: 0.010) - [ 1000 - 1000 - Unit ] - - location: 154 (just consumed gas: 0.020) - [ 2000 - Unit ] - - location: 155 (just consumed gas: 0.010) - [ 2000 - 2000 - Unit ] - - location: 160 (just consumed gas: 0.035) - [ 0 - Unit ] - - location: 161 (just consumed gas: 0.010) - [ True - Unit ] - - location: 162 (just consumed gas: 0) - [ Unit ] - - location: 162 (just consumed gas: 0.015) - [ Unit ] - - location: 168 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 170 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out deleted file mode 100644 index 96c3864f8178..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x01 0x00' --level 1 --trace-stack -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.381) - [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) - None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out deleted file mode 100644 index 905c22842c22..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x010000' --level 1 --trace-stack -storage - (Some 0x0200000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.381) - [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0100000000000000000000000000000000000000000000000000000000000000) - None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030) - [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x0200000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out deleted file mode 100644 index c8b0c0a3ed65..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x010000 0x00' --level 1 --trace-stack -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.381) - [ (Pair (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) - None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x0100000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out deleted file mode 100644 index d08cf351e5b5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x00 0x00' --level 1 --trace-stack -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.381) - [ (Pair (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) - None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 11 (just consumed gas: 0.010) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.030) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input249636002-.out deleted file mode 100644 index 9b4ba2dc73f9..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input249636002-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack -storage - (Some "1970-01-01T00:03:20Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.232) - [ (Pair (Pair 100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 100 "1970-01-01T00:01:40Z") - (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 12 (just consumed gas: 0.010) - [ 100 - (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 13 (just consumed gas: 0) - [ (Pair 100 "1970-01-01T00:01:40Z") ] - - location: 15 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" ] - - location: 13 (just consumed gas: 0.025) - [ 100 - "1970-01-01T00:01:40Z" ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:03:20Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:03:20Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input267363182-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input267363182-.out deleted file mode 100644 index 3990a57b5b0b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input267363182-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair -100 100)' --level 1 --trace-stack -storage - (Some "1970-01-01T00:00:00Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.232) - [ (Pair (Pair -100 "1970-01-01T00:01:40Z") None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 11 (just consumed gas: 0.010) - [ (Pair -100 "1970-01-01T00:01:40Z") - (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 12 (just consumed gas: 0.010) - [ -100 - (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 13 (just consumed gas: 0) - [ (Pair -100 "1970-01-01T00:01:40Z") ] - - location: 15 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" ] - - location: 13 (just consumed gas: 0.025) - [ -100 - "1970-01-01T00:01:40Z" ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input438561129-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input438561129-.out deleted file mode 100644 index ce2e3d390d96..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_delta_timestamp--storage921624073--input438561129-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_delta_timestamp.tz on storage None and input '(Pair 0 "1970-01-01T00:00:00Z")' --level 1 --trace-stack -storage - (Some "1970-01-01T00:00:00Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.340) - [ (Pair (Pair 0 "1970-01-01T00:00:00Z") None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 0 "1970-01-01T00:00:00Z") - (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 12 (just consumed gas: 0.010) - [ 0 - (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 13 (just consumed gas: 0) - [ (Pair 0 "1970-01-01T00:00:00Z") ] - - location: 15 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" ] - - location: 13 (just consumed gas: 0.025) - [ 0 - "1970-01-01T00:00:00Z" ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input249636002-.out deleted file mode 100644 index 73ae4a668d7b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input249636002-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 100)' --level 1 --trace-stack -storage - (Some "1970-01-01T00:03:20Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.232) - [ (Pair (Pair "1970-01-01T00:01:40Z" 100) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 100) - (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" - (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 13 (just consumed gas: 0) - [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 15 (just consumed gas: 0.010) - [ 100 ] - - location: 13 (just consumed gas: 0.025) - [ "1970-01-01T00:01:40Z" - 100 ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:03:20Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:03:20Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:03:20Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:03:20Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input307538219-.out deleted file mode 100644 index 158398016ebb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input307538219-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair 100 -100)' --level 1 --trace-stack -storage - (Some "1970-01-01T00:00:00Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.232) - [ (Pair (Pair "1970-01-01T00:01:40Z" -100) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" -100) - (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" - (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 13 (just consumed gas: 0) - [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 15 (just consumed gas: 0.010) - [ -100 ] - - location: 13 (just consumed gas: 0.025) - [ "1970-01-01T00:01:40Z" - -100 ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input373737581-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input373737581-.out deleted file mode 100644 index a29fec52110c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -add_timestamp_delta--storage921624073--input373737581-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/add_timestamp_delta.tz on storage None and input '(Pair "1970-01-01T00:00:00Z" 0)' --level 1 --trace-stack -storage - (Some "1970-01-01T00:00:00Z") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.340) - [ (Pair (Pair "1970-01-01T00:00:00Z" 0) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" 0) - (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 12 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" - (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 13 (just consumed gas: 0) - [ (Pair "1970-01-01T00:00:00Z" 0) ] - - location: 15 (just consumed gas: 0.010) - [ 0 ] - - location: 13 (just consumed gas: 0.025) - [ "1970-01-01T00:00:00Z" - 0 ] - - location: 16 (just consumed gas: 0.035) - [ "1970-01-01T00:00:00Z" ] - - location: 17 (just consumed gas: 0.010) - [ (Some "1970-01-01T00:00:00Z") ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Some "1970-01-01T00:00:00Z") ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some "1970-01-01T00:00:00Z")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -address--storage921624073--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -address--storage921624073--input117475800-.out deleted file mode 100644 index be6e79d50cae..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -address--storage921624073--input117475800-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/address.tz on storage None and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack -storage - (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 9.061) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" None) ] - - location: 9 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 10 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (just consumed gas: 0.010) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 12 (just consumed gas: 0.010) - [ {} - (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input106930123-.out deleted file mode 100644 index 75527c03689a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input106930123-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False True)' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 7.572) - [ (Pair (Pair False True) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair False True) ] - - location: 11 (just consumed gas: 0.010) - [ False - True ] - - location: 12 (just consumed gas: 0.010) - [ False ] - - location: 13 (just consumed gas: 0.010) - [ (Some False) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input181204719-.out deleted file mode 100644 index 45da8bd53931..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input181204719-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True False)' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 7.572) - [ (Pair (Pair True False) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair True False) ] - - location: 11 (just consumed gas: 0.010) - [ True - False ] - - location: 12 (just consumed gas: 0.010) - [ False ] - - location: 13 (just consumed gas: 0.010) - [ (Some False) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input223774825-.out deleted file mode 100644 index 5b96063eda89..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input223774825-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair False False)' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 7.572) - [ (Pair (Pair False False) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair False False) ] - - location: 11 (just consumed gas: 0.010) - [ False - False ] - - location: 12 (just consumed gas: 0.010) - [ False ] - - location: 13 (just consumed gas: 0.010) - [ (Some False) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input908807505-.out deleted file mode 100644 index ceb118bc42ec..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and--storage921624073--input908807505-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and.tz on storage None and input '(Pair True True)' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 7.572) - [ (Pair (Pair True True) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair True True) ] - - location: 11 (just consumed gas: 0.010) - [ True - True ] - - location: 12 (just consumed gas: 0.010) - [ True ] - - location: 13 (just consumed gas: 0.010) - [ (Some True) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_binary--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_binary--storage125992234--input125992234-.out deleted file mode 100644 index 0d60b9477e44..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_binary--storage125992234--input125992234-.out +++ /dev/null @@ -1,93 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_binary.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 36.249) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 5 ] - - location: 11 (just consumed gas: 0.010) - [ 6 - 5 ] - - location: 14 (just consumed gas: 0.035) - [ 4 ] - - location: 15 (just consumed gas: 0.010) - [ 4 - 4 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 6 ] - - location: 31 (just consumed gas: 0.010) - [ 5 - 6 ] - - location: 34 (just consumed gas: 0.035) - [ 4 ] - - location: 35 (just consumed gas: 0.010) - [ 4 - 4 ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 12 ] - - location: 51 (just consumed gas: 0.010) - [ -1 - 12 ] - - location: 54 (just consumed gas: 0.035) - [ 12 ] - - location: 55 (just consumed gas: 0.010) - [ 12 - 12 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ 12 ] - - location: 71 (just consumed gas: 0.010) - [ -5 - 12 ] - - location: 74 (just consumed gas: 0.035) - [ 8 ] - - location: 75 (just consumed gas: 0.010) - [ 8 - 8 ] - - location: 80 (just consumed gas: 0.035) - [ 0 ] - - location: 81 (just consumed gas: 0.010) - [ True ] - - location: 82 (just consumed gas: 0) - [ ] - - location: 82 (just consumed gas: 0.015) - [ ] - - location: 88 (just consumed gas: 0.010) - [ Unit ] - - location: 89 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 91 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_bytes--storage125992234--input125992234-.out deleted file mode 100644 index 1f8a8bb03275..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,75 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 28.329) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0x05 ] - - location: 11 (just consumed gas: 0.010) - [ 0x06 - 0x05 ] - - location: 14 (just consumed gas: 0.035) - [ 0x04 ] - - location: 15 (just consumed gas: 0.010) - [ 0x04 - 0x04 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 0x0005 ] - - location: 31 (just consumed gas: 0.010) - [ 0x0106 - 0x0005 ] - - location: 34 (just consumed gas: 0.036) - [ 0x0004 ] - - location: 35 (just consumed gas: 0.010) - [ 0x0004 - 0x0004 ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 0x05 ] - - location: 51 (just consumed gas: 0.010) - [ 0x0106 - 0x05 ] - - location: 54 (just consumed gas: 0.035) - [ 0x04 ] - - location: 55 (just consumed gas: 0.010) - [ 0x04 - 0x04 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ Unit ] - - location: 69 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 71 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input106930123-.out deleted file mode 100644 index e59947037afc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input106930123-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False True)' --level 1 --trace-stack -storage - False -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.366) - [ (Pair (Pair False True) False) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair False True) ] - - location: 10 (just consumed gas: 0.010) - [ False - True ] - - location: 11 (just consumed gas: 0.010) - [ False ] - - location: 12 (just consumed gas: 0.010) - [ {} - False ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} False) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input181204719-.out deleted file mode 100644 index 40875c719a31..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input181204719-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True False)' --level 1 --trace-stack -storage - False -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.366) - [ (Pair (Pair True False) False) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair True False) ] - - location: 10 (just consumed gas: 0.010) - [ True - False ] - - location: 11 (just consumed gas: 0.010) - [ False ] - - location: 12 (just consumed gas: 0.010) - [ {} - False ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} False) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input223774825-.out deleted file mode 100644 index 940a535b2114..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input223774825-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair False False)' --level 1 --trace-stack -storage - False -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.366) - [ (Pair (Pair False False) False) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair False False) ] - - location: 10 (just consumed gas: 0.010) - [ False - False ] - - location: 11 (just consumed gas: 0.010) - [ False ] - - location: 12 (just consumed gas: 0.010) - [ {} - False ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} False) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input908807505-.out deleted file mode 100644 index d2ba79a5abec..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -and_logical_1--storage570553153--input908807505-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/and_logical_1.tz on storage False and input '(Pair True True)' --level 1 --trace-stack -storage - True -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.366) - [ (Pair (Pair True True) False) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair True True) ] - - location: 10 (just consumed gas: 0.010) - [ True - True ] - - location: 11 (just consumed gas: 0.010) - [ True ] - - location: 12 (just consumed gas: 0.010) - [ {} - True ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} True) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -balance--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -balance--storage492856247--input125992234-.out deleted file mode 100644 index 0dbbeb2f64c9..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -balance--storage492856247--input125992234-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/balance.tz on storage 111 and input Unit --level 1 --trace-stack -storage - 4000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 111) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 4000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 4000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 4000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage495706788--input453441034-.out deleted file mode 100644 index 5d6c8419c7bc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage495706788--input453441034-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) -trace - - location: 12 (just consumed gas: 9.936) - [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair {} None) ] - - location: 13 (just consumed gas: 0) - [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.025) - [ 1 - {} - {} ] - - location: 17 (just consumed gas: 0.720) - [ False - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - {} ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input453441034-.out deleted file mode 100644 index e1575f34b9c2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input453441034-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input564400327-.out deleted file mode 100644 index 824211257194..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input564400327-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 2 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 2 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input654274102-.out deleted file mode 100644 index 571b7b5a5450..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage56274299--input654274102-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 4 - Set map(4)[2] to 11 -trace - - location: 12 (just consumed gas: 11.838) - [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 3 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 3 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.723) - [ False - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage690637660--input453441034-.out deleted file mode 100644 index 7c68df5917ed..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage690637660--input453441034-.out +++ /dev/null @@ -1,43 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[1] to 0 -trace - - location: 12 (just consumed gas: 10.868) - [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 0 } - { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 0 } - { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.722) - [ True - { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 0 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 0 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage806237530--input453441034-.out deleted file mode 100644 index 60f0d92e8c30..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_nat--storage806237530--input453441034-.out +++ /dev/null @@ -1,43 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map nat nat) - Set map(4)[0] to 1 -trace - - location: 12 (just consumed gas: 10.843) - [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 0 1 } - { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 0 1 } - { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.722) - [ False - { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 0 1 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 1 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input1071610051-.out deleted file mode 100644 index 764c00d779e5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input1071610051-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["bar"] to 4 - Set map(4)["foo"] to 11 -trace - - location: 12 (just consumed gas: 11.994) - [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "baz" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "baz" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.735) - [ False - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input700475845-.out deleted file mode 100644 index c828deb16e24..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input700475845-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["bar"] to 4 - Set map(4)["foo"] to 11 -trace - - location: 12 (just consumed gas: 11.994) - [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.735) - [ True - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input905318451-.out deleted file mode 100644 index 3870b8a82da0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage109689253--input905318451-.out +++ /dev/null @@ -1,44 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["bar"] to 4 - Set map(4)["foo"] to 11 -trace - - location: 12 (just consumed gas: 11.994) - [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "foo" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "foo" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.735) - [ True - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage495706788--input700475845-.out deleted file mode 100644 index 478ef4ac8235..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage495706788--input700475845-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) -trace - - location: 12 (just consumed gas: 9.980) - [ (Pair "bar" {} None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair {} None) ] - - location: 13 (just consumed gas: 0) - [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - {} - {} ] - - location: 17 (just consumed gas: 0.732) - [ False - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - {} ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage915708427--input700475845-.out deleted file mode 100644 index 2f03c6d2c5a5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage915708427--input700475845-.out +++ /dev/null @@ -1,43 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair 4 (Some False)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["foo"] to 1 -trace - - location: 12 (just consumed gas: 10.968) - [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair { Elt "foo" 1 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "foo" 1 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - { Elt "foo" 1 } ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - { Elt "foo" 1 } - { Elt "foo" 1 } ] - - location: 17 (just consumed gas: 0.734) - [ False - { Elt "foo" 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt "foo" 1 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 1 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage936682951--input905318451-.out deleted file mode 100644 index 3cb9643c390a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -big_map_mem_string--storage936682951--input905318451-.out +++ /dev/null @@ -1,43 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/big_map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack -storage - (Pair 4 (Some True)) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["foo"] to 0 -trace - - location: 12 (just consumed gas: 10.968) - [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "foo" - (Pair { Elt "foo" 0 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "foo" 0 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "foo" 0 } - { Elt "foo" 0 } ] - - location: 13 (just consumed gas: 0.025) - [ "foo" - { Elt "foo" 0 } - { Elt "foo" 0 } ] - - location: 17 (just consumed gas: 0.734) - [ True - { Elt "foo" 0 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "foo" 0 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "foo" 0 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 0 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input125.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input125.out deleted file mode 100644 index 42a35b534a6b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input125.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz on storage None and input Unit --level 1 --trace-stack -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.634) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (just consumed gas: 0.010) - [ {} - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x0000000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out deleted file mode 100644 index f80069f581af..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz on storage None and input Unit --level 1 --trace-stack -storage - (Some 0x1000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.634) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 13 (just consumed gas: 0.010) - [ {} - (Some 0x1000000000000000000000000000000000000000000000000000000000000000) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair {} - (Some 0x1000000000000000000000000000000000000000000000000000000000000000)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out deleted file mode 100644 index d96e4ef1af01..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x01 --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115) - [ 1 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out deleted file mode 100644 index ea15bbbd1a8a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x00 --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115) - [ 0 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out deleted file mode 100644 index 34b9addaa21e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 --level 1 --trace-stack -storage - 11320265829256585830781521966149529460476767408210445238902869222031333517497 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 0) ] - - location: 7 (just consumed gas: 0.010) - [ 0xb9e8abf8dc324a010007addde986fe0f7c81fab16d26819d0534b7691c0b0719 ] - - location: 8 (just consumed gas: 0.115) - [ 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 11320265829256585830781521966149529460476767408210445238902869222031333517497 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} - 11320265829256585830781521966149529460476767408210445238902869222031333517497) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out deleted file mode 100644 index 524b93516e68..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz on storage 0 and input 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 --level 1 --trace-stack -storage - 17832688077013577776524784494464728518213913213412866604053735695200962927400 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 0) ] - - location: 7 (just consumed gas: 0.010) - [ 0x28db8e57af88d9576acd181b89f24e50a89a6423f939026ed91349fc9af16c27 ] - - location: 8 (just consumed gas: 0.115) - [ 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 17832688077013577776524784494464728518213913213412866604053735695200962927400 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} - 17832688077013577776524784494464728518213913213412866604053735695200962927400) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out deleted file mode 100644 index f2d008d13022..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz on storage 0 and input 0x10 --level 1 --trace-stack -storage - 16 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 9.316) - [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - - location: 7 (just consumed gas: 0.010) - [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.115) - [ 16 ] - - location: 9 (just consumed gas: 0.010) - [ (Some 16) ] - - location: 11 (just consumed gas: 0) - [ 16 ] - - location: 11 (just consumed gas: 0.015) - [ 16 ] - - location: 17 (just consumed gas: 0.010) - [ 1 - 16 ] - - location: 20 (just consumed gas: 0) - [ 16 ] - - location: 21 (just consumed gas: 0.010) - [ {} - 16 ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} 16) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out deleted file mode 100644 index 02ee516cd360..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack -storage - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010) - [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.299) - [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out deleted file mode 100644 index 1172469a88cb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack -storage - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010) - [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.299) - [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out deleted file mode 100644 index 13e8665c84c5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out deleted file mode 100644 index 982db8f76a05..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out deleted file mode 100644 index e2924050db06..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.299) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out deleted file mode 100644 index 4825c89cb476..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out deleted file mode 100644 index bdde555aca4f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack -storage - 0x0200000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 2 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out deleted file mode 100644 index e3f928e40c43..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack -storage - 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ -42 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out deleted file mode 100644 index a4e945364796..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack -storage - 0x0000000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 0 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.265) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out deleted file mode 100644 index 5fd27e24f27c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack -storage - 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ -1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out deleted file mode 100644 index 679417eab12a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack -storage - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010) - [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.299) - [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out deleted file mode 100644 index 3a4294b67a34..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack -storage - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010) - [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.299) - [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out deleted file mode 100644 index 2a7ffc786776..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out deleted file mode 100644 index e849ddf33c96..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out deleted file mode 100644 index 67382b43038e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.299) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out deleted file mode 100644 index f5c2746969a7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out deleted file mode 100644 index 5c024f617d0e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack -storage - 0x0200000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 2 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.266) - [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out deleted file mode 100644 index a77a7eef9f93..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack -storage - 0x0000000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.387) - [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 0 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.265) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out deleted file mode 100644 index 5dd17cc9cf2c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack -storage - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010) - [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.010) - [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f - 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (just consumed gas: 0.299) - [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out deleted file mode 100644 index 4cc9646c9c0f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack -storage - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010) - [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.010) - [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f - 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (just consumed gas: 0.299) - [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out deleted file mode 100644 index 5de07303e654..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010) - [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d - 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out deleted file mode 100644 index 8c603389faee..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010) - [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d - 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out deleted file mode 100644 index 9e059f27ec96..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (just consumed gas: 0.299) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out deleted file mode 100644 index 9db84d401cab..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 1 ] - - location: 9 (just consumed gas: 0.266) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out deleted file mode 100644 index b810ebd7fbaa..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack -storage - 0x0200000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 2 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 2 ] - - location: 9 (just consumed gas: 0.266) - [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out deleted file mode 100644 index 037fa12a617c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -42 --level 1 --trace-stack -storage - 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair -42 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ -42 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - -42 ] - - location: 9 (just consumed gas: 0.266) - [ 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xd7fffffffefffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out deleted file mode 100644 index 3bc813d76ad3..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack -storage - 0x0000000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 0 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 0 ] - - location: 9 (just consumed gas: 0.265) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out deleted file mode 100644 index ada6ba602bb2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input -1 --level 1 --trace-stack -storage - 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair -1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ -1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - -1 ] - - location: 9 (just consumed gas: 0.266) - [ 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out deleted file mode 100644 index 02bcc9900045..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f and input 22620284817922784902564672469917992996328211127984472897491698543785655336309 --level 1 --trace-stack -storage - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f) ] - - location: 7 (just consumed gas: 0.010) - [ 22620284817922784902564672469917992996328211127984472897491698543785655336309 - 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f ] - - location: 8 (just consumed gas: 0.010) - [ 0x4147a5ad0a633e4880d2296f08ec5c12d03e3fa4a6b49ecbd16a30a3cfcdbe3f - 22620284817922784902564672469917992996328211127984472897491698543785655336309 ] - - location: 9 (just consumed gas: 0.299) - [ 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x4e387e0ebfb3d1633153c195036e0c0b672955c4a0e420f93ec20a76fe677c62) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out deleted file mode 100644 index f4121a235ca8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f and input 33644916630334844239120348434626468649534186770809802792596996408934105684394 --level 1 --trace-stack -storage - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f) ] - - location: 7 (just consumed gas: 0.010) - [ 33644916630334844239120348434626468649534186770809802792596996408934105684394 - 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f ] - - location: 8 (just consumed gas: 0.010) - [ 0x5b0ecd0fa853810e356f1eb79721e80b30510fcc3a455f4fc02fdd9a90c5401f - 33644916630334844239120348434626468649534186770809802792596996408934105684394 ] - - location: 9 (just consumed gas: 0.299) - [ 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x2ef123703093cbbbd124e15f2054fa5781ed0b8d092ec3c6e5d76b4ca918a221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out deleted file mode 100644 index 97514c557248..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 69615968247920749285624776342583898043608129789011377475114141186797415307882 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 69615968247920749285624776342583898043608129789011377475114141186797415307882 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010) - [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d - 69615968247920749285624776342583898043608129789011377475114141186797415307882 ] - - location: 9 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out deleted file mode 100644 index f25a668250c3..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d and input 17180093072794558806177035834397932205917577288483739652510482486858834123369 --level 1 --trace-stack -storage - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d) ] - - location: 7 (just consumed gas: 0.010) - [ 17180093072794558806177035834397932205917577288483739652510482486858834123369 - 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d ] - - location: 8 (just consumed gas: 0.010) - [ 0x8578be1766f92cd82c5e5135c374a03a8562e263ea953a3f9711b0153b7fcf2d - 17180093072794558806177035834397932205917577288483739652510482486858834123369 ] - - location: 9 (just consumed gas: 0.299) - [ 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xfaa60dacea8e26112e524d379720fe4f95fbc5a26f1b1a67e229e26ddecbf221) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out deleted file mode 100644 index b66311ec3da2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 52435875175126190479447740508185965837690552500527637822603658699938581184514 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 52435875175126190479447740508185965837690552500527637822603658699938581184514 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 52435875175126190479447740508185965837690552500527637822603658699938581184514 ] - - location: 9 (just consumed gas: 0.299) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out deleted file mode 100644 index 806de9b8099b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 1 --level 1 --trace-stack -storage - 0x0100000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 1 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 1 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 1 ] - - location: 9 (just consumed gas: 0.266) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0100000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out deleted file mode 100644 index 88181a137a30..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 2 --level 1 --trace-stack -storage - 0x0200000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 2 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 2 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 2 ] - - location: 9 (just consumed gas: 0.266) - [ 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0200000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0200000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out deleted file mode 100644 index 58a718a7e36f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz on storage 0x0100000000000000000000000000000000000000000000000000000000000000 and input 0 --level 1 --trace-stack -storage - 0x0000000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.940) - [ (Pair 0 0x0100000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 0 - 0x0100000000000000000000000000000000000000000000000000000000000000 ] - - location: 8 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 0 ] - - location: 9 (just consumed gas: 0.265) - [ 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x0000000000000000000000000000000000000000000000000000000000000000 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x0000000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_int--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_int--storage125992234--input125992234-.out deleted file mode 100644 index 6f5d5f5fb6b5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_int--storage125992234--input125992234-.out +++ /dev/null @@ -1,261 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_int_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 118.175) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0 ] - - location: 11 (just consumed gas: 0.090) - [ 0x ] - - location: 12 (just consumed gas: 0.010) - [ 0x - 0x ] - - location: 17 (just consumed gas: 0.035) - [ 0 ] - - location: 18 (just consumed gas: 0.010) - [ True ] - - location: 19 (just consumed gas: 0) - [ ] - - location: 19 (just consumed gas: 0.015) - [ ] - - location: 25 (just consumed gas: 0.010) - [ 1 ] - - location: 28 (just consumed gas: 0.093) - [ 0x01 ] - - location: 29 (just consumed gas: 0.010) - [ 0x01 - 0x01 ] - - location: 34 (just consumed gas: 0.035) - [ 0 ] - - location: 35 (just consumed gas: 0.010) - [ True ] - - location: 36 (just consumed gas: 0) - [ ] - - location: 36 (just consumed gas: 0.015) - [ ] - - location: 42 (just consumed gas: 0.010) - [ 1193046 ] - - location: 45 (just consumed gas: 0.099) - [ 0x123456 ] - - location: 46 (just consumed gas: 0.010) - [ 0x123456 - 0x123456 ] - - location: 51 (just consumed gas: 0.035) - [ 0 ] - - location: 52 (just consumed gas: 0.010) - [ True ] - - location: 53 (just consumed gas: 0) - [ ] - - location: 53 (just consumed gas: 0.015) - [ ] - - location: 59 (just consumed gas: 0.010) - [ 0x123456 ] - - location: 62 (just consumed gas: 0.027) - [ 1193046 ] - - location: 63 (just consumed gas: 0.010) - [ 1193046 - 1193046 ] - - location: 68 (just consumed gas: 0.035) - [ 0 ] - - location: 69 (just consumed gas: 0.010) - [ True ] - - location: 70 (just consumed gas: 0) - [ ] - - location: 70 (just consumed gas: 0.015) - [ ] - - location: 76 (just consumed gas: 0.010) - [ 0x0000123456 ] - - location: 79 (just consumed gas: 0.032) - [ 1193046 ] - - location: 80 (just consumed gas: 0.010) - [ 1193046 - 1193046 ] - - location: 85 (just consumed gas: 0.035) - [ 0 ] - - location: 86 (just consumed gas: 0.010) - [ True ] - - location: 87 (just consumed gas: 0) - [ ] - - location: 87 (just consumed gas: 0.015) - [ ] - - location: 93 (just consumed gas: 0.010) - [ 0x ] - - location: 96 (just consumed gas: 0.020) - [ 0 ] - - location: 97 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 102 (just consumed gas: 0.035) - [ 0 ] - - location: 103 (just consumed gas: 0.010) - [ True ] - - location: 104 (just consumed gas: 0) - [ ] - - location: 104 (just consumed gas: 0.015) - [ ] - - location: 110 (just consumed gas: 0.010) - [ 0x0000 ] - - location: 113 (just consumed gas: 0.025) - [ 0 ] - - location: 114 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 119 (just consumed gas: 0.035) - [ 0 ] - - location: 120 (just consumed gas: 0.010) - [ True ] - - location: 121 (just consumed gas: 0) - [ ] - - location: 121 (just consumed gas: 0.015) - [ ] - - location: 127 (just consumed gas: 0.010) - [ -128 ] - - location: 130 (just consumed gas: 0.093) - [ 0x80 ] - - location: 131 (just consumed gas: 0.010) - [ 0x80 - 0x80 ] - - location: 136 (just consumed gas: 0.035) - [ 0 ] - - location: 137 (just consumed gas: 0.010) - [ True ] - - location: 138 (just consumed gas: 0) - [ ] - - location: 138 (just consumed gas: 0.015) - [ ] - - location: 144 (just consumed gas: 0.010) - [ -129 ] - - location: 147 (just consumed gas: 0.093) - [ 0xff7f ] - - location: 148 (just consumed gas: 0.010) - [ 0xff7f - 0xff7f ] - - location: 153 (just consumed gas: 0.035) - [ 0 ] - - location: 154 (just consumed gas: 0.010) - [ True ] - - location: 155 (just consumed gas: 0) - [ ] - - location: 155 (just consumed gas: 0.015) - [ ] - - location: 161 (just consumed gas: 0.010) - [ -33024 ] - - location: 164 (just consumed gas: 0.096) - [ 0xff7f00 ] - - location: 165 (just consumed gas: 0.010) - [ 0xff7f00 - 0xff7f00 ] - - location: 170 (just consumed gas: 0.035) - [ 0 ] - - location: 171 (just consumed gas: 0.010) - [ True ] - - location: 172 (just consumed gas: 0) - [ ] - - location: 172 (just consumed gas: 0.015) - [ ] - - location: 178 (just consumed gas: 0.010) - [ -4294967296 ] - - location: 181 (just consumed gas: 0.105) - [ 0xff00000000 ] - - location: 182 (just consumed gas: 0.010) - [ 0xff00000000 - 0xff00000000 ] - - location: 187 (just consumed gas: 0.035) - [ 0 ] - - location: 188 (just consumed gas: 0.010) - [ True ] - - location: 189 (just consumed gas: 0) - [ ] - - location: 189 (just consumed gas: 0.015) - [ ] - - location: 195 (just consumed gas: 0.010) - [ 0x80 ] - - location: 198 (just consumed gas: 0.022) - [ -128 ] - - location: 199 (just consumed gas: 0.010) - [ -128 - -128 ] - - location: 204 (just consumed gas: 0.035) - [ 0 ] - - location: 205 (just consumed gas: 0.010) - [ True ] - - location: 206 (just consumed gas: 0) - [ ] - - location: 206 (just consumed gas: 0.015) - [ ] - - location: 212 (just consumed gas: 0.010) - [ 0xff7f ] - - location: 215 (just consumed gas: 0.025) - [ -129 ] - - location: 216 (just consumed gas: 0.010) - [ -129 - -129 ] - - location: 221 (just consumed gas: 0.035) - [ 0 ] - - location: 222 (just consumed gas: 0.010) - [ True ] - - location: 223 (just consumed gas: 0) - [ ] - - location: 223 (just consumed gas: 0.015) - [ ] - - location: 229 (just consumed gas: 0.010) - [ 0xff7f00 ] - - location: 232 (just consumed gas: 0.027) - [ -33024 ] - - location: 233 (just consumed gas: 0.010) - [ -33024 - -33024 ] - - location: 238 (just consumed gas: 0.035) - [ 0 ] - - location: 239 (just consumed gas: 0.010) - [ True ] - - location: 240 (just consumed gas: 0) - [ ] - - location: 240 (just consumed gas: 0.015) - [ ] - - location: 246 (just consumed gas: 0.010) - [ 0xffffff7f00 ] - - location: 249 (just consumed gas: 0.032) - [ -33024 ] - - location: 250 (just consumed gas: 0.010) - [ -33024 - -33024 ] - - location: 255 (just consumed gas: 0.035) - [ 0 ] - - location: 256 (just consumed gas: 0.010) - [ True ] - - location: 257 (just consumed gas: 0) - [ ] - - location: 257 (just consumed gas: 0.015) - [ ] - - location: 263 (just consumed gas: 0.010) - [ 0xff00000000 ] - - location: 266 (just consumed gas: 0.032) - [ -4294967296 ] - - location: 267 (just consumed gas: 0.010) - [ -4294967296 - -4294967296 ] - - location: 272 (just consumed gas: 0.035) - [ 0 ] - - location: 273 (just consumed gas: 0.010) - [ True ] - - location: 274 (just consumed gas: 0) - [ ] - - location: 274 (just consumed gas: 0.015) - [ ] - - location: 280 (just consumed gas: 0.010) - [ Unit ] - - location: 281 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 283 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_nat--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_nat--storage125992234--input125992234-.out deleted file mode 100644 index 2c6fdd25169b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -bytes_of_nat--storage125992234--input125992234-.out +++ /dev/null @@ -1,126 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/bytes_of_nat_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 53.702) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0 ] - - location: 11 (just consumed gas: 0.075) - [ 0x ] - - location: 12 (just consumed gas: 0.010) - [ 0x - 0x ] - - location: 17 (just consumed gas: 0.035) - [ 0 ] - - location: 18 (just consumed gas: 0.010) - [ True ] - - location: 19 (just consumed gas: 0) - [ ] - - location: 19 (just consumed gas: 0.015) - [ ] - - location: 25 (just consumed gas: 0.010) - [ 1 ] - - location: 28 (just consumed gas: 0.078) - [ 0x01 ] - - location: 29 (just consumed gas: 0.010) - [ 0x01 - 0x01 ] - - location: 34 (just consumed gas: 0.035) - [ 0 ] - - location: 35 (just consumed gas: 0.010) - [ True ] - - location: 36 (just consumed gas: 0) - [ ] - - location: 36 (just consumed gas: 0.015) - [ ] - - location: 42 (just consumed gas: 0.010) - [ 1193046 ] - - location: 45 (just consumed gas: 0.084) - [ 0x123456 ] - - location: 46 (just consumed gas: 0.010) - [ 0x123456 - 0x123456 ] - - location: 51 (just consumed gas: 0.035) - [ 0 ] - - location: 52 (just consumed gas: 0.010) - [ True ] - - location: 53 (just consumed gas: 0) - [ ] - - location: 53 (just consumed gas: 0.015) - [ ] - - location: 59 (just consumed gas: 0.010) - [ 0x123456 ] - - location: 62 (just consumed gas: 0.052) - [ 1193046 ] - - location: 63 (just consumed gas: 0.010) - [ 1193046 - 1193046 ] - - location: 68 (just consumed gas: 0.035) - [ 0 ] - - location: 69 (just consumed gas: 0.010) - [ True ] - - location: 70 (just consumed gas: 0) - [ ] - - location: 70 (just consumed gas: 0.015) - [ ] - - location: 76 (just consumed gas: 0.010) - [ 0x0000123456 ] - - location: 79 (just consumed gas: 0.057) - [ 1193046 ] - - location: 80 (just consumed gas: 0.010) - [ 1193046 - 1193046 ] - - location: 85 (just consumed gas: 0.035) - [ 0 ] - - location: 86 (just consumed gas: 0.010) - [ True ] - - location: 87 (just consumed gas: 0) - [ ] - - location: 87 (just consumed gas: 0.015) - [ ] - - location: 93 (just consumed gas: 0.010) - [ 0x ] - - location: 96 (just consumed gas: 0.045) - [ 0 ] - - location: 97 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 102 (just consumed gas: 0.035) - [ 0 ] - - location: 103 (just consumed gas: 0.010) - [ True ] - - location: 104 (just consumed gas: 0) - [ ] - - location: 104 (just consumed gas: 0.015) - [ ] - - location: 110 (just consumed gas: 0.010) - [ 0x0000 ] - - location: 113 (just consumed gas: 0.050) - [ 0 ] - - location: 114 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 119 (just consumed gas: 0.035) - [ 0 ] - - location: 120 (just consumed gas: 0.010) - [ True ] - - location: 121 (just consumed gas: 0) - [ ] - - location: 121 (just consumed gas: 0.015) - [ ] - - location: 127 (just consumed gas: 0.010) - [ Unit ] - - location: 128 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 130 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -car--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -car--storage680650890--input783124233-.out deleted file mode 100644 index cdceb77ed082..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -car--storage680650890--input783124233-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/car.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack -storage - 34 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.723) - [ (Pair (Pair 34 17) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair 34 17) ] - - location: 10 (just consumed gas: 0.010) - [ 34 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 34 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 34) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cdr--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cdr--storage680650890--input783124233-.out deleted file mode 100644 index 63993aa29fe6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cdr--storage680650890--input783124233-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cdr.tz on storage 0 and input '(Pair 34 17)' --level 1 --trace-stack -storage - 17 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.723) - [ (Pair (Pair 34 17) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair 34 17) ] - - location: 10 (just consumed gas: 0.010) - [ 17 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 17 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 17) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage109160754--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage109160754--input125992234-.out deleted file mode 100644 index 00de8ffca097..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage109160754--input125992234-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some 0x7a06a770)' and input Unit --level 1 --trace-stack -storage - (Some "NetXynUjJNZm7wi") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.203) - [ (Pair Unit (Some "NetXdQprcVkpaWU")) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXynUjJNZm7wi" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXynUjJNZm7wi") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXynUjJNZm7wi") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXynUjJNZm7wi")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage921624073--input125992234-.out deleted file mode 100644 index adb04a849437..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage921624073--input125992234-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage None and input Unit --level 1 --trace-stack -storage - (Some "NetXynUjJNZm7wi") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXynUjJNZm7wi" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXynUjJNZm7wi") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXynUjJNZm7wi") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXynUjJNZm7wi")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage981066851--input125992234-.out deleted file mode 100644 index 1ce56c5584df..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -chain_id_store--storage981066851--input125992234-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/chain_id_store.tz on storage '(Some "NetXynUjJNZm7wi")' and input Unit --level 1 --trace-stack -storage - (Some "NetXynUjJNZm7wi") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.753) - [ (Pair Unit (Some "NetXynUjJNZm7wi")) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.015) - [ "NetXynUjJNZm7wi" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "NetXynUjJNZm7wi") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "NetXynUjJNZm7wi") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "NetXynUjJNZm7wi")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb--storage950292965--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb--storage950292965--input125992234-.out deleted file mode 100644 index 9002213dc805..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb--storage950292965--input125992234-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb.tz on storage '(Pair 0 0 0)' and input Unit --level 1 --trace-stack -storage - (Pair 1 2 3) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.221) - [ (Pair Unit 0 0 0) ] - - location: 10 (just consumed gas: 0.010) - [ ] - - location: 11 (just consumed gas: 0.010) - [ 3 ] - - location: 14 (just consumed gas: 0.010) - [ 2 - 3 ] - - location: 17 (just consumed gas: 0.010) - [ 1 - 2 - 3 ] - - location: 20 (just consumed gas: 0.010) - [ {} - 1 - 2 - 3 ] - - location: 22 (just consumed gas: 0.014) - [ (Pair {} 1 2 3) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-get--storage125992234--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-get--storage125992234--input186507116-.out deleted file mode 100644 index f99a470c2008..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-get--storage125992234--input186507116-.out +++ /dev/null @@ -1,123 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-get.tz on storage Unit and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 43.348) - [ (Pair (Pair 1 4 2 Unit) Unit) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) - (Pair 1 4 2 Unit) ] - - location: 13 (just consumed gas: 0.010) - [ 1 - (Pair 1 4 2 Unit) ] - - location: 14 (just consumed gas: 0.010) - [ 1 - 1 - (Pair 1 4 2 Unit) ] - - location: 19 (just consumed gas: 0.035) - [ 0 - (Pair 1 4 2 Unit) ] - - location: 20 (just consumed gas: 0.010) - [ True - (Pair 1 4 2 Unit) ] - - location: 21 (just consumed gas: 0) - [ (Pair 1 4 2 Unit) ] - - location: 21 (just consumed gas: 0.015) - [ (Pair 1 4 2 Unit) ] - - location: 27 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) - (Pair 1 4 2 Unit) ] - - location: 28 (just consumed gas: 0.020) - [ 1 - (Pair 1 4 2 Unit) ] - - location: 30 (just consumed gas: 0.010) - [ 1 - 1 - (Pair 1 4 2 Unit) ] - - location: 35 (just consumed gas: 0.035) - [ 0 - (Pair 1 4 2 Unit) ] - - location: 36 (just consumed gas: 0.010) - [ True - (Pair 1 4 2 Unit) ] - - location: 37 (just consumed gas: 0) - [ (Pair 1 4 2 Unit) ] - - location: 37 (just consumed gas: 0.015) - [ (Pair 1 4 2 Unit) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) - (Pair 1 4 2 Unit) ] - - location: 44 (just consumed gas: 0.021) - [ 4 - (Pair 1 4 2 Unit) ] - - location: 46 (just consumed gas: 0.010) - [ 4 - 4 - (Pair 1 4 2 Unit) ] - - location: 51 (just consumed gas: 0.035) - [ 0 - (Pair 1 4 2 Unit) ] - - location: 52 (just consumed gas: 0.010) - [ True - (Pair 1 4 2 Unit) ] - - location: 53 (just consumed gas: 0) - [ (Pair 1 4 2 Unit) ] - - location: 53 (just consumed gas: 0.015) - [ (Pair 1 4 2 Unit) ] - - location: 59 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) - (Pair 1 4 2 Unit) ] - - location: 60 (just consumed gas: 0.022) - [ 2 - (Pair 1 4 2 Unit) ] - - location: 62 (just consumed gas: 0.010) - [ 2 - 2 - (Pair 1 4 2 Unit) ] - - location: 67 (just consumed gas: 0.035) - [ 0 - (Pair 1 4 2 Unit) ] - - location: 68 (just consumed gas: 0.010) - [ True - (Pair 1 4 2 Unit) ] - - location: 69 (just consumed gas: 0) - [ (Pair 1 4 2 Unit) ] - - location: 69 (just consumed gas: 0.015) - [ (Pair 1 4 2 Unit) ] - - location: 75 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) - (Pair 1 4 2 Unit) ] - - location: 76 (just consumed gas: 0.023) - [ Unit - (Pair 1 4 2 Unit) ] - - location: 78 (just consumed gas: 0.010) - [ Unit - Unit - (Pair 1 4 2 Unit) ] - - location: 81 (just consumed gas: 0.010) - [ 0 - (Pair 1 4 2 Unit) ] - - location: 82 (just consumed gas: 0.010) - [ True - (Pair 1 4 2 Unit) ] - - location: 83 (just consumed gas: 0) - [ (Pair 1 4 2 Unit) ] - - location: 83 (just consumed gas: 0.015) - [ (Pair 1 4 2 Unit) ] - - location: 89 (just consumed gas: 0.010) - [ ] - - location: 90 (just consumed gas: 0.010) - [ Unit ] - - location: 91 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 93 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set--storage186507116--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set--storage186507116--input125992234-.out deleted file mode 100644 index a0ef56d2f88f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set--storage186507116--input125992234-.out +++ /dev/null @@ -1,39 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set.tz on storage '(Pair 1 4 2 Unit)' and input Unit --level 1 --trace-stack -storage - (Pair 2 12 8 Unit) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 12.667) - [ (Pair Unit 1 4 2 Unit) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) ] - - location: 12 (just consumed gas: 0.010) - [ 2 - (Pair 1 4 2 Unit) ] - - location: 15 (just consumed gas: 0.021) - [ (Pair 2 4 2 Unit) ] - - location: 17 (just consumed gas: 0.010) - [ 12 - (Pair 2 4 2 Unit) ] - - location: 20 (just consumed gas: 0.023) - [ (Pair 2 12 2 Unit) ] - - location: 22 (just consumed gas: 0.010) - [ 8 - (Pair 2 12 2 Unit) ] - - location: 25 (just consumed gas: 0.026) - [ (Pair 2 12 8 Unit) ] - - location: 27 (just consumed gas: 0.010) - [ Unit - (Pair 2 12 8 Unit) ] - - location: 28 (just consumed gas: 0.027) - [ (Pair 2 12 8 Unit) ] - - location: 30 (just consumed gas: 0.010) - [ {} - (Pair 2 12 8 Unit) ] - - location: 32 (just consumed gas: 0.010) - [ (Pair {} 2 12 8 Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set-2--storage921624073--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set-2--storage921624073--input186507116-.out deleted file mode 100644 index 0ad1956b30d1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comb-set-2--storage921624073--input186507116-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comb-set-2.tz on storage None and input '(Pair 1 4 2 Unit)' --level 1 --trace-stack -storage - (Some (Pair 2 4 "toto" 0x01)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 12.844) - [ (Pair (Pair 1 4 2 Unit) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 1 4 2 Unit) ] - - location: 17 (just consumed gas: 0.010) - [ 2 - (Pair 1 4 2 Unit) ] - - location: 20 (just consumed gas: 0.021) - [ (Pair 2 4 2 Unit) ] - - location: 22 (just consumed gas: 0.010) - [ "toto" - (Pair 2 4 2 Unit) ] - - location: 25 (just consumed gas: 0.026) - [ (Pair 2 4 "toto" Unit) ] - - location: 27 (just consumed gas: 0.010) - [ 0x01 - (Pair 2 4 "toto" Unit) ] - - location: 30 (just consumed gas: 0.027) - [ (Pair 2 4 "toto" 0x01) ] - - location: 32 (just consumed gas: 0.010) - [ (Some (Pair 2 4 "toto" 0x01)) ] - - location: 33 (just consumed gas: 0.010) - [ {} - (Some (Pair 2 4 "toto" 0x01)) ] - - location: 35 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair 2 4 "toto" 0x01))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -compare--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -compare--storage125992234--input125992234-.out deleted file mode 100644 index 9c3df6c6b334..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -compare--storage125992234--input125992234-.out +++ /dev/null @@ -1,398 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/compare.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 200.472) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ True ] - - location: 11 (just consumed gas: 0.010) - [ True - True ] - - location: 12 (just consumed gas: 0.035) - [ 0 ] - - location: 14 (just consumed gas: 0.010) - [ True ] - - location: 15 (just consumed gas: 0) - [ ] - - location: 15 (just consumed gas: 0.015) - [ ] - - location: 21 (just consumed gas: 0.010) - [ False ] - - location: 24 (just consumed gas: 0.010) - [ False - False ] - - location: 25 (just consumed gas: 0.035) - [ 0 ] - - location: 27 (just consumed gas: 0.010) - [ True ] - - location: 28 (just consumed gas: 0) - [ ] - - location: 28 (just consumed gas: 0.015) - [ ] - - location: 34 (just consumed gas: 0.010) - [ False ] - - location: 37 (just consumed gas: 0.010) - [ True - False ] - - location: 40 (just consumed gas: 0.035) - [ 1 ] - - location: 42 (just consumed gas: 0.010) - [ True ] - - location: 43 (just consumed gas: 0) - [ ] - - location: 43 (just consumed gas: 0.015) - [ ] - - location: 49 (just consumed gas: 0.010) - [ True ] - - location: 52 (just consumed gas: 0.010) - [ False - True ] - - location: 55 (just consumed gas: 0.035) - [ -1 ] - - location: 57 (just consumed gas: 0.010) - [ True ] - - location: 58 (just consumed gas: 0) - [ ] - - location: 58 (just consumed gas: 0.015) - [ ] - - location: 64 (just consumed gas: 0.010) - [ 0xaabbcc ] - - location: 67 (just consumed gas: 0.010) - [ 0xaabbcc - 0xaabbcc ] - - location: 68 (just consumed gas: 0.035) - [ 0 ] - - location: 70 (just consumed gas: 0.010) - [ True ] - - location: 71 (just consumed gas: 0) - [ ] - - location: 71 (just consumed gas: 0.015) - [ ] - - location: 77 (just consumed gas: 0.010) - [ 0x ] - - location: 80 (just consumed gas: 0.010) - [ 0x - 0x ] - - location: 83 (just consumed gas: 0.035) - [ 0 ] - - location: 85 (just consumed gas: 0.010) - [ True ] - - location: 86 (just consumed gas: 0) - [ ] - - location: 86 (just consumed gas: 0.015) - [ ] - - location: 92 (just consumed gas: 0.010) - [ 0x ] - - location: 95 (just consumed gas: 0.010) - [ 0x01 - 0x ] - - location: 98 (just consumed gas: 0.035) - [ 1 ] - - location: 100 (just consumed gas: 0.010) - [ True ] - - location: 101 (just consumed gas: 0) - [ ] - - location: 101 (just consumed gas: 0.015) - [ ] - - location: 107 (just consumed gas: 0.010) - [ 0x01 ] - - location: 110 (just consumed gas: 0.010) - [ 0x02 - 0x01 ] - - location: 113 (just consumed gas: 0.035) - [ 1 ] - - location: 115 (just consumed gas: 0.010) - [ True ] - - location: 116 (just consumed gas: 0) - [ ] - - location: 116 (just consumed gas: 0.015) - [ ] - - location: 122 (just consumed gas: 0.010) - [ 0x02 ] - - location: 125 (just consumed gas: 0.010) - [ 0x01 - 0x02 ] - - location: 128 (just consumed gas: 0.035) - [ -1 ] - - location: 130 (just consumed gas: 0.010) - [ True ] - - location: 131 (just consumed gas: 0) - [ ] - - location: 131 (just consumed gas: 0.015) - [ ] - - location: 137 (just consumed gas: 0.010) - [ 1 ] - - location: 140 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 141 (just consumed gas: 0.035) - [ 0 ] - - location: 143 (just consumed gas: 0.010) - [ True ] - - location: 144 (just consumed gas: 0) - [ ] - - location: 144 (just consumed gas: 0.015) - [ ] - - location: 150 (just consumed gas: 0.010) - [ 10 ] - - location: 153 (just consumed gas: 0.010) - [ 5 - 10 ] - - location: 156 (just consumed gas: 0.035) - [ -1 ] - - location: 158 (just consumed gas: 0.010) - [ True ] - - location: 159 (just consumed gas: 0) - [ ] - - location: 159 (just consumed gas: 0.015) - [ ] - - location: 165 (just consumed gas: 0.010) - [ -4 ] - - location: 168 (just consumed gas: 0.010) - [ 1923 - -4 ] - - location: 171 (just consumed gas: 0.035) - [ 1 ] - - location: 173 (just consumed gas: 0.010) - [ True ] - - location: 174 (just consumed gas: 0) - [ ] - - location: 174 (just consumed gas: 0.015) - [ ] - - location: 180 (just consumed gas: 0.010) - [ 1 ] - - location: 183 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 184 (just consumed gas: 0.035) - [ 0 ] - - location: 186 (just consumed gas: 0.010) - [ True ] - - location: 187 (just consumed gas: 0) - [ ] - - location: 187 (just consumed gas: 0.015) - [ ] - - location: 193 (just consumed gas: 0.010) - [ 10 ] - - location: 196 (just consumed gas: 0.010) - [ 5 - 10 ] - - location: 199 (just consumed gas: 0.035) - [ -1 ] - - location: 201 (just consumed gas: 0.010) - [ True ] - - location: 202 (just consumed gas: 0) - [ ] - - location: 202 (just consumed gas: 0.015) - [ ] - - location: 208 (just consumed gas: 0.010) - [ 4 ] - - location: 211 (just consumed gas: 0.010) - [ 1923 - 4 ] - - location: 214 (just consumed gas: 0.035) - [ 1 ] - - location: 216 (just consumed gas: 0.010) - [ True ] - - location: 217 (just consumed gas: 0) - [ ] - - location: 217 (just consumed gas: 0.015) - [ ] - - location: 223 (just consumed gas: 0.010) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 226 (just consumed gas: 0.010) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 227 (just consumed gas: 0.036) - [ 0 ] - - location: 229 (just consumed gas: 0.010) - [ True ] - - location: 230 (just consumed gas: 0) - [ ] - - location: 230 (just consumed gas: 0.015) - [ ] - - location: 236 (just consumed gas: 0.010) - [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 239 (just consumed gas: 0.010) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ] - - location: 242 (just consumed gas: 0.036) - [ -1 ] - - location: 244 (just consumed gas: 0.010) - [ True ] - - location: 245 (just consumed gas: 0) - [ ] - - location: 245 (just consumed gas: 0.015) - [ ] - - location: 251 (just consumed gas: 0.010) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 254 (just consumed gas: 0.010) - [ "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" - "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 257 (just consumed gas: 0.036) - [ 1 ] - - location: 259 (just consumed gas: 0.010) - [ True ] - - location: 260 (just consumed gas: 0) - [ ] - - location: 260 (just consumed gas: 0.015) - [ ] - - location: 266 (just consumed gas: 0.010) - [ 1 ] - - location: 269 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 270 (just consumed gas: 0.035) - [ 0 ] - - location: 272 (just consumed gas: 0.010) - [ True ] - - location: 273 (just consumed gas: 0) - [ ] - - location: 273 (just consumed gas: 0.015) - [ ] - - location: 279 (just consumed gas: 0.010) - [ 10 ] - - location: 282 (just consumed gas: 0.010) - [ 5 - 10 ] - - location: 285 (just consumed gas: 0.035) - [ -1 ] - - location: 287 (just consumed gas: 0.010) - [ True ] - - location: 288 (just consumed gas: 0) - [ ] - - location: 288 (just consumed gas: 0.015) - [ ] - - location: 294 (just consumed gas: 0.010) - [ 4 ] - - location: 297 (just consumed gas: 0.010) - [ 1923 - 4 ] - - location: 300 (just consumed gas: 0.035) - [ 1 ] - - location: 302 (just consumed gas: 0.010) - [ True ] - - location: 303 (just consumed gas: 0) - [ ] - - location: 303 (just consumed gas: 0.015) - [ ] - - location: 309 (just consumed gas: 0.010) - [ "AABBCC" ] - - location: 312 (just consumed gas: 0.010) - [ "AABBCC" - "AABBCC" ] - - location: 313 (just consumed gas: 0.035) - [ 0 ] - - location: 315 (just consumed gas: 0.010) - [ True ] - - location: 316 (just consumed gas: 0) - [ ] - - location: 316 (just consumed gas: 0.015) - [ ] - - location: 322 (just consumed gas: 0.010) - [ "" ] - - location: 325 (just consumed gas: 0.010) - [ "" - "" ] - - location: 328 (just consumed gas: 0.035) - [ 0 ] - - location: 330 (just consumed gas: 0.010) - [ True ] - - location: 331 (just consumed gas: 0) - [ ] - - location: 331 (just consumed gas: 0.015) - [ ] - - location: 337 (just consumed gas: 0.010) - [ "" ] - - location: 340 (just consumed gas: 0.010) - [ "a" - "" ] - - location: 343 (just consumed gas: 0.035) - [ 1 ] - - location: 345 (just consumed gas: 0.010) - [ True ] - - location: 346 (just consumed gas: 0) - [ ] - - location: 346 (just consumed gas: 0.015) - [ ] - - location: 352 (just consumed gas: 0.010) - [ "a" ] - - location: 355 (just consumed gas: 0.010) - [ "b" - "a" ] - - location: 358 (just consumed gas: 0.035) - [ 1 ] - - location: 360 (just consumed gas: 0.010) - [ True ] - - location: 361 (just consumed gas: 0) - [ ] - - location: 361 (just consumed gas: 0.015) - [ ] - - location: 367 (just consumed gas: 0.010) - [ "b" ] - - location: 370 (just consumed gas: 0.010) - [ "a" - "b" ] - - location: 373 (just consumed gas: 0.035) - [ -1 ] - - location: 375 (just consumed gas: 0.010) - [ True ] - - location: 376 (just consumed gas: 0) - [ ] - - location: 376 (just consumed gas: 0.015) - [ ] - - location: 382 (just consumed gas: 0.010) - [ "2019-09-16T08:38:05Z" ] - - location: 385 (just consumed gas: 0.010) - [ "2019-09-16T08:38:05Z" - "2019-09-16T08:38:05Z" ] - - location: 386 (just consumed gas: 0.035) - [ 0 ] - - location: 388 (just consumed gas: 0.010) - [ True ] - - location: 389 (just consumed gas: 0) - [ ] - - location: 389 (just consumed gas: 0.015) - [ ] - - location: 395 (just consumed gas: 0.010) - [ "2017-09-16T08:38:04Z" ] - - location: 398 (just consumed gas: 0.010) - [ "2019-09-16T08:38:05Z" - "2017-09-16T08:38:04Z" ] - - location: 401 (just consumed gas: 0.035) - [ 1 ] - - location: 403 (just consumed gas: 0.010) - [ True ] - - location: 404 (just consumed gas: 0) - [ ] - - location: 404 (just consumed gas: 0.015) - [ ] - - location: 410 (just consumed gas: 0.010) - [ "2019-09-16T08:38:05Z" ] - - location: 413 (just consumed gas: 0.010) - [ "2019-09-16T08:38:04Z" - "2019-09-16T08:38:05Z" ] - - location: 416 (just consumed gas: 0.035) - [ -1 ] - - location: 418 (just consumed gas: 0.010) - [ True ] - - location: 419 (just consumed gas: 0) - [ ] - - location: 419 (just consumed gas: 0.015) - [ ] - - location: 425 (just consumed gas: 0.010) - [ Unit ] - - location: 426 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 428 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comparisons--storage457300675--input281780712-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comparisons--storage457300675--input281780712-.out deleted file mode 100644 index 51abe50c25bc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -comparisons--storage457300675--input281780712-.out +++ /dev/null @@ -1,350 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/comparisons.tz on storage '{}' and input '{ -9999999; -1 ; 0 ; 1 ; 9999999 }' --level 1 --trace-stack -storage - { { False ; False ; False ; True ; True } ; - { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 29.633) - [ (Pair { -9999999 ; -1 ; 0 ; 1 ; 9999999 } {}) ] - - location: 10 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 11 (just consumed gas: 0.010) - [ {} - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 16 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0) - [ -9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015) - [ -1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015) - [ 0 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015) - [ 1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015) - [ 9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 19 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 17 (just consumed gas: 0.015) - [ { False ; False ; True ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 14 (just consumed gas: 0.025) - [ {} - { False ; False ; True ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 20 (just consumed gas: 0.010) - [ { False ; False ; True ; False ; False } - {} - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 21 (just consumed gas: 0.010) - [ { { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 24 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0) - [ -9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015) - [ -1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015) - [ 0 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015) - [ 1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015) - [ 9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 27 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 25 (just consumed gas: 0.015) - [ { True ; True ; False ; True ; True } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 22 (just consumed gas: 0.025) - [ { { False ; False ; True ; False ; False } } - { True ; True ; False ; True ; True } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 28 (just consumed gas: 0.010) - [ { True ; True ; False ; True ; True } - { { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 29 (just consumed gas: 0.010) - [ { { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 32 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0) - [ -9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015) - [ -1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015) - [ 0 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015) - [ 1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015) - [ 9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 35 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 33 (just consumed gas: 0.015) - [ { True ; True ; True ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 30 (just consumed gas: 0.025) - [ { { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { True ; True ; True ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 36 (just consumed gas: 0.010) - [ { True ; True ; True ; False ; False } - { { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 37 (just consumed gas: 0.010) - [ { { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 40 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0) - [ -9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015) - [ -1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015) - [ 0 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015) - [ 1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015) - [ 9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 43 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 41 (just consumed gas: 0.015) - [ { True ; True ; False ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 38 (just consumed gas: 0.025) - [ { { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { True ; True ; False ; False ; False } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 44 (just consumed gas: 0.010) - [ { True ; True ; False ; False ; False } - { { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 45 (just consumed gas: 0.010) - [ { { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 48 (just consumed gas: 0.010) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0) - [ -9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015) - [ -1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010) - [ False - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015) - [ 0 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015) - [ 1 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015) - [ 9999999 - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 51 (just consumed gas: 0.010) - [ True - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 49 (just consumed gas: 0.015) - [ { False ; False ; True ; True ; True } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 46 (just consumed gas: 0.025) - [ { { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { False ; False ; True ; True ; True } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 52 (just consumed gas: 0.010) - [ { False ; False ; True ; True ; True } - { { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 53 (just consumed gas: 0.010) - [ { { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 54 (just consumed gas: 0) - [ { -9999999 ; -1 ; 0 ; 1 ; 9999999 } ] - - location: 56 (just consumed gas: 0) - [ -9999999 ] - - location: 58 (just consumed gas: 0.010) - [ False ] - - location: 56 (just consumed gas: 0.015) - [ -1 ] - - location: 58 (just consumed gas: 0.010) - [ False ] - - location: 56 (just consumed gas: 0.015) - [ 0 ] - - location: 58 (just consumed gas: 0.010) - [ False ] - - location: 56 (just consumed gas: 0.015) - [ 1 ] - - location: 58 (just consumed gas: 0.010) - [ True ] - - location: 56 (just consumed gas: 0.015) - [ 9999999 ] - - location: 58 (just consumed gas: 0.010) - [ True ] - - location: 56 (just consumed gas: 0.015) - [ { False ; False ; False ; True ; True } ] - - location: 54 (just consumed gas: 0.025) - [ { { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } - { False ; False ; False ; True ; True } ] - - location: 59 (just consumed gas: 0.010) - [ { False ; False ; False ; True ; True } - { { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } ] - - location: 60 (just consumed gas: 0.010) - [ { { False ; False ; False ; True ; True } ; - { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } ] - - location: 61 (just consumed gas: 0.010) - [ {} - { { False ; False ; False ; True ; True } ; - { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } } ] - - location: 63 (just consumed gas: 0.010) - [ (Pair {} - { { False ; False ; False ; True ; True } ; - { False ; False ; True ; True ; True } ; - { True ; True ; False ; False ; False } ; - { True ; True ; True ; False ; False } ; - { True ; True ; False ; True ; True } ; - { False ; False ; True ; False ; False } }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input392583650-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input392583650-.out deleted file mode 100644 index 4043a9be4873..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input392583650-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "test1" ; "test2" }' --level 1 --trace-stack -storage - { "Hello test1" ; "Hello test2" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.769) - [ (Pair { "test1" ; "test2" } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { "test1" ; "test2" } ] - - location: 10 (just consumed gas: 0) - [ "test1" ] - - location: 12 (just consumed gas: 0.010) - [ "Hello " - "test1" ] - - location: 15 (just consumed gas: 0.050) - [ "Hello test1" ] - - location: 10 (just consumed gas: 0.015) - [ "test2" ] - - location: 12 (just consumed gas: 0.010) - [ "Hello " - "test2" ] - - location: 15 (just consumed gas: 0.050) - [ "Hello test2" ] - - location: 10 (just consumed gas: 0.015) - [ { "Hello test1" ; "Hello test2" } ] - - location: 16 (just consumed gas: 0.010) - [ {} - { "Hello test1" ; "Hello test2" } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} { "Hello test1" ; "Hello test2" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input457300675-.out deleted file mode 100644 index a8a3b1b6ca5c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.441) - [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input640104625-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input640104625-.out deleted file mode 100644 index 0f979f7764d1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello--storage457300675--input640104625-.out +++ /dev/null @@ -1,28 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello.tz on storage '{}' and input '{ "World!" }' --level 1 --trace-stack -storage - { "Hello World!" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.615) - [ (Pair { "World!" } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { "World!" } ] - - location: 10 (just consumed gas: 0) - [ "World!" ] - - location: 12 (just consumed gas: 0.010) - [ "Hello " - "World!" ] - - location: 15 (just consumed gas: 0.051) - [ "Hello World!" ] - - location: 10 (just consumed gas: 0.015) - [ { "Hello World!" } ] - - location: 16 (just consumed gas: 0.010) - [ {} - { "Hello World!" } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} { "Hello World!" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input354091714-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input354091714-.out deleted file mode 100644 index 22fd45aef42e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input354091714-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xab ; 0xcd }' --level 1 --trace-stack -storage - { 0xffab ; 0xffcd } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.522) - [ (Pair { 0xab ; 0xcd } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { 0xab ; 0xcd } ] - - location: 10 (just consumed gas: 0) - [ 0xab ] - - location: 12 (just consumed gas: 0.010) - [ 0xff - 0xab ] - - location: 15 (just consumed gas: 0.046) - [ 0xffab ] - - location: 10 (just consumed gas: 0.015) - [ 0xcd ] - - location: 12 (just consumed gas: 0.010) - [ 0xff - 0xcd ] - - location: 15 (just consumed gas: 0.046) - [ 0xffcd ] - - location: 10 (just consumed gas: 0.015) - [ { 0xffab ; 0xffcd } ] - - location: 16 (just consumed gas: 0.010) - [ {} - { 0xffab ; 0xffcd } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} { 0xffab ; 0xffcd }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input441061063-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input441061063-.out deleted file mode 100644 index 916d1bf11e8a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input441061063-.out +++ /dev/null @@ -1,28 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{ 0xcd }' --level 1 --trace-stack -storage - { 0xffcd } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.422) - [ (Pair { 0xcd } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { 0xcd } ] - - location: 10 (just consumed gas: 0) - [ 0xcd ] - - location: 12 (just consumed gas: 0.010) - [ 0xff - 0xcd ] - - location: 15 (just consumed gas: 0.046) - [ 0xffcd ] - - location: 10 (just consumed gas: 0.015) - [ { 0xffcd } ] - - location: 16 (just consumed gas: 0.010) - [ {} - { 0xffcd } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} { 0xffcd }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input457300675-.out deleted file mode 100644 index 57c7da9a6ce0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_hello_bytes--storage457300675--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_hello_bytes.tz on storage '{}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.322) - [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input264787654-.out deleted file mode 100644 index eb57e4f075a0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input264787654-.out +++ /dev/null @@ -1,96 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack -storage - "abc" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 10.864) - [ (Pair { "a" ; "b" ; "c" } "") ] - - location: 8 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 9 (just consumed gas: 0.010) - [ "" - { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } - "" ] - - location: 13 (just consumed gas: 0) - [ "a" - "" ] - - location: 15 (just consumed gas: 0.010) - [ "" - "a" ] - - location: 16 (just consumed gas: 0) - [ "a" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "a" ] - - location: 20 (just consumed gas: 0.010) - [ "a" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "a" } ] - - location: 16 (just consumed gas: 0.025) - [ "" - { "a" } ] - - location: 22 (just consumed gas: 0.010) - [ { "" ; "a" } ] - - location: 23 (just consumed gas: 0.120) - [ "a" ] - - location: 13 (just consumed gas: 0.015) - [ "b" - "a" ] - - location: 15 (just consumed gas: 0.010) - [ "a" - "b" ] - - location: 16 (just consumed gas: 0) - [ "b" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "b" ] - - location: 20 (just consumed gas: 0.010) - [ "b" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "b" } ] - - location: 16 (just consumed gas: 0.025) - [ "a" - { "b" } ] - - location: 22 (just consumed gas: 0.010) - [ { "a" ; "b" } ] - - location: 23 (just consumed gas: 0.121) - [ "ab" ] - - location: 13 (just consumed gas: 0.015) - [ "c" - "ab" ] - - location: 15 (just consumed gas: 0.010) - [ "ab" - "c" ] - - location: 16 (just consumed gas: 0) - [ "c" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "c" ] - - location: 20 (just consumed gas: 0.010) - [ "c" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "c" } ] - - location: 16 (just consumed gas: 0.025) - [ "ab" - { "c" } ] - - location: 22 (just consumed gas: 0.010) - [ { "ab" ; "c" } ] - - location: 23 (just consumed gas: 0.121) - [ "abc" ] - - location: 13 (just consumed gas: 0.015) - [ "abc" ] - - location: 24 (just consumed gas: 0.010) - [ {} - "abc" ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} "abc") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input316676251-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input316676251-.out deleted file mode 100644 index 0beebab05896..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input316676251-.out +++ /dev/null @@ -1,119 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{ "Hello" ; " " ; "World" ; "!" }' --level 1 --trace-stack -storage - "Hello World!" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 11.068) - [ (Pair { "Hello" ; " " ; "World" ; "!" } "") ] - - location: 8 (just consumed gas: 0.010) - [ { "Hello" ; " " ; "World" ; "!" } ] - - location: 9 (just consumed gas: 0.010) - [ "" - { "Hello" ; " " ; "World" ; "!" } ] - - location: 12 (just consumed gas: 0.010) - [ { "Hello" ; " " ; "World" ; "!" } - "" ] - - location: 13 (just consumed gas: 0) - [ "Hello" - "" ] - - location: 15 (just consumed gas: 0.010) - [ "" - "Hello" ] - - location: 16 (just consumed gas: 0) - [ "Hello" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "Hello" ] - - location: 20 (just consumed gas: 0.010) - [ "Hello" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "Hello" } ] - - location: 16 (just consumed gas: 0.025) - [ "" - { "Hello" } ] - - location: 22 (just consumed gas: 0.010) - [ { "" ; "Hello" } ] - - location: 23 (just consumed gas: 0.122) - [ "Hello" ] - - location: 13 (just consumed gas: 0.015) - [ " " - "Hello" ] - - location: 15 (just consumed gas: 0.010) - [ "Hello" - " " ] - - location: 16 (just consumed gas: 0) - [ " " ] - - location: 18 (just consumed gas: 0.010) - [ {} - " " ] - - location: 20 (just consumed gas: 0.010) - [ " " - {} ] - - location: 21 (just consumed gas: 0.010) - [ { " " } ] - - location: 16 (just consumed gas: 0.025) - [ "Hello" - { " " } ] - - location: 22 (just consumed gas: 0.010) - [ { "Hello" ; " " } ] - - location: 23 (just consumed gas: 0.123) - [ "Hello " ] - - location: 13 (just consumed gas: 0.015) - [ "World" - "Hello " ] - - location: 15 (just consumed gas: 0.010) - [ "Hello " - "World" ] - - location: 16 (just consumed gas: 0) - [ "World" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "World" ] - - location: 20 (just consumed gas: 0.010) - [ "World" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "World" } ] - - location: 16 (just consumed gas: 0.025) - [ "Hello " - { "World" } ] - - location: 22 (just consumed gas: 0.010) - [ { "Hello " ; "World" } ] - - location: 23 (just consumed gas: 0.125) - [ "Hello World" ] - - location: 13 (just consumed gas: 0.015) - [ "!" - "Hello World" ] - - location: 15 (just consumed gas: 0.010) - [ "Hello World" - "!" ] - - location: 16 (just consumed gas: 0) - [ "!" ] - - location: 18 (just consumed gas: 0.010) - [ {} - "!" ] - - location: 20 (just consumed gas: 0.010) - [ "!" - {} ] - - location: 21 (just consumed gas: 0.010) - [ { "!" } ] - - location: 16 (just consumed gas: 0.025) - [ "Hello World" - { "!" } ] - - location: 22 (just consumed gas: 0.010) - [ { "Hello World" ; "!" } ] - - location: 23 (just consumed gas: 0.126) - [ "Hello World!" ] - - location: 13 (just consumed gas: 0.015) - [ "Hello World!" ] - - location: 24 (just consumed gas: 0.010) - [ {} - "Hello World!" ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} "Hello World!") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input457300675-.out deleted file mode 100644 index 2f5fc13ee93c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -concat_list--storage79230375--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/concat_list.tz on storage '""' and input '{}' --level 1 --trace-stack -storage - "" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 10.492) - [ (Pair {} "") ] - - location: 8 (just consumed gas: 0.010) - [ {} ] - - location: 9 (just consumed gas: 0.010) - [ "" - {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - "" ] - - location: 13 (just consumed gas: 0) - [ "" ] - - location: 24 (just consumed gas: 0.010) - [ {} - "" ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} "") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage457300675--input798141440-.out deleted file mode 100644 index 315b06d27c88..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage457300675--input798141440-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{}' and input 10 --level 1 --trace-stack -storage - { 10 } -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.560) - [ (Pair 10 {}) ] - - location: 8 (just consumed gas: 0.010) - [ 10 - {} ] - - location: 9 (just consumed gas: 0.010) - [ { 10 } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { 10 } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { 10 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage581876226--input166122047-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage581876226--input166122047-.out deleted file mode 100644 index a123236b1585..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage581876226--input166122047-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ 10 }' and input -5 --level 1 --trace-stack -storage - { -5 ; 10 } -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.660) - [ (Pair -5 { 10 }) ] - - location: 8 (just consumed gas: 0.010) - [ -5 - { 10 } ] - - location: 9 (just consumed gas: 0.010) - [ { -5 ; 10 } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { -5 ; 10 } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { -5 ; 10 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage793461282--input781487591-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage793461282--input781487591-.out deleted file mode 100644 index 08d726cee514..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -cons--storage793461282--input781487591-.out +++ /dev/null @@ -1,22 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/cons.tz on storage '{ -5 ; 10 }' and input 99 --level 1 --trace-stack -storage - { 99 ; -5 ; 10 } -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.760) - [ (Pair 99 { -5 ; 10 }) ] - - location: 8 (just consumed gas: 0.010) - [ 99 - { -5 ; 10 } ] - - location: 9 (just consumed gas: 0.010) - [ { 99 ; -5 ; 10 } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { 99 ; -5 ; 10 } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { 99 ; -5 ; 10 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input315650912-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input315650912-.out deleted file mode 100644 index c1e7762a3ebc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input315650912-.out +++ /dev/null @@ -1,166 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" } { "B" })' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.251) - [ (Pair (Pair { "B" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { "B" } { "B" }) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "B" } { "B" }) - (Pair { "B" } { "B" }) ] - - location: 14 (just consumed gas: 0.010) - [ { "B" } - (Pair { "B" } { "B" }) ] - - location: 15 (just consumed gas: 0) - [ (Pair { "B" } { "B" }) ] - - location: 17 (just consumed gas: 0.010) - [ { "B" } ] - - location: 15 (just consumed gas: 0.025) - [ { "B" } - { "B" } ] - - location: 18 (just consumed gas: 0.300) - [ {} - { "B" } - { "B" } ] - - location: 20 (just consumed gas: 0.010) - [ { "B" } - {} - { "B" } ] - - location: 21 (just consumed gas: 0) - [ "B" - {} - { "B" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "B" {}) - { "B" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "B" {}) - (Pair "B" {}) - { "B" } ] - - location: 25 (just consumed gas: 0.010) - [ "B" - (Pair "B" {}) - { "B" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "B" {}) - { "B" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "B" } ] - - location: 26 (just consumed gas: 0.025) - [ "B" - {} - { "B" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "B" - {} - { "B" } ] - - location: 32 (just consumed gas: 0.010) - [ "B" - True - {} - { "B" } ] - - location: 33 (just consumed gas: 0.132) - [ { "B" } - { "B" } ] - - location: 21 (just consumed gas: 0.015) - [ { "B" } - { "B" } ] - - location: 34 (just consumed gas: 0.010) - [ True - { "B" } - { "B" } ] - - location: 37 (just consumed gas: 0.010) - [ { "B" } - True - { "B" } ] - - location: 38 (just consumed gas: 0.010) - [ (Pair { "B" } True) - { "B" } ] - - location: 39 (just consumed gas: 0.010) - [ { "B" } - (Pair { "B" } True) ] - - location: 40 (just consumed gas: 0) - [ "B" - (Pair { "B" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "B" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "B" } True) - (Pair "B" { "B" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "B" } True) - (Pair "B" { "B" } True) - (Pair "B" { "B" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "B" } True) - (Pair "B" { "B" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "B" } True) - (Pair "B" { "B" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" } True) - (Pair "B" { "B" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" } - (Pair "B" { "B" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "B" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" } - { "B" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "B" } - { "B" } - True ] - - location: 57 (just consumed gas: 0.117) - [ True - { "B" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" } True) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair { "B" } True) ] - - location: 64 (just consumed gas: 0.010) - [ True ] - - location: 65 (just consumed gas: 0.010) - [ (Some True) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input51111414-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input51111414-.out deleted file mode 100644 index 852bcd3bc3d8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input51111414-.out +++ /dev/null @@ -1,410 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" })' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.931) - [ (Pair (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) - (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 14 (just consumed gas: 0.010) - [ { "B" ; "B" ; "asdf" ; "C" } - (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 15 (just consumed gas: 0) - [ (Pair { "B" ; "B" ; "asdf" ; "C" } { "B" ; "C" ; "asdf" }) ] - - location: 17 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } ] - - location: 15 (just consumed gas: 0.025) - [ { "B" ; "B" ; "asdf" ; "C" } - { "B" ; "C" ; "asdf" } ] - - location: 18 (just consumed gas: 0.300) - [ {} - { "B" ; "B" ; "asdf" ; "C" } - { "B" ; "C" ; "asdf" } ] - - location: 20 (just consumed gas: 0.010) - [ { "B" ; "B" ; "asdf" ; "C" } - {} - { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0) - [ "B" - {} - { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "B" {}) - { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "B" {}) - (Pair "B" {}) - { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010) - [ "B" - (Pair "B" {}) - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "B" {}) - { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025) - [ "B" - {} - { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "B" - {} - { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010) - [ "B" - True - {} - { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.132) - [ { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015) - [ "B" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "B" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "B" { "B" }) - (Pair "B" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "B" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010) - [ { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025) - [ "B" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "B" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010) - [ "B" - True - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.134) - [ { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015) - [ "asdf" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" }) - (Pair "asdf" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010) - [ "asdf" - (Pair "asdf" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "asdf" { "B" }) - { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010) - [ { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025) - [ "asdf" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "asdf" - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010) - [ "asdf" - True - { "B" } - { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.146) - [ { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015) - [ "C" - { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "asdf" }) - { "B" ; "C" ; "asdf" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "asdf" }) - (Pair "C" { "B" ; "asdf" }) - { "B" ; "C" ; "asdf" } ] - - location: 25 (just consumed gas: 0.010) - [ "C" - (Pair "C" { "B" ; "asdf" }) - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "C" { "B" ; "asdf" }) - { "B" ; "C" ; "asdf" } ] - - location: 28 (just consumed gas: 0.010) - [ { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 26 (just consumed gas: 0.025) - [ "C" - { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "C" - { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 32 (just consumed gas: 0.010) - [ "C" - True - { "B" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 33 (just consumed gas: 0.136) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 21 (just consumed gas: 0.015) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 34 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } ] - - location: 37 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True - { "B" ; "C" ; "asdf" } ] - - location: 38 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - { "B" ; "C" ; "asdf" } ] - - location: 39 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0) - [ "B" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.118) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ "C" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "C" - (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "C" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.118) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ "asdf" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "asdf" - (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "asdf" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.127) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (just consumed gas: 0.010) - [ True ] - - location: 65 (just consumed gas: 0.010) - [ (Some True) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input545734274-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input545734274-.out deleted file mode 100644 index 15e3f9956643..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input545734274-.out +++ /dev/null @@ -1,166 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "A" } { "B" })' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.251) - [ (Pair (Pair { "A" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { "A" } { "B" }) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "A" } { "B" }) - (Pair { "A" } { "B" }) ] - - location: 14 (just consumed gas: 0.010) - [ { "A" } - (Pair { "A" } { "B" }) ] - - location: 15 (just consumed gas: 0) - [ (Pair { "A" } { "B" }) ] - - location: 17 (just consumed gas: 0.010) - [ { "B" } ] - - location: 15 (just consumed gas: 0.025) - [ { "A" } - { "B" } ] - - location: 18 (just consumed gas: 0.300) - [ {} - { "A" } - { "B" } ] - - location: 20 (just consumed gas: 0.010) - [ { "A" } - {} - { "B" } ] - - location: 21 (just consumed gas: 0) - [ "A" - {} - { "B" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "A" {}) - { "B" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "A" {}) - (Pair "A" {}) - { "B" } ] - - location: 25 (just consumed gas: 0.010) - [ "A" - (Pair "A" {}) - { "B" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "A" {}) - { "B" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "B" } ] - - location: 26 (just consumed gas: 0.025) - [ "A" - {} - { "B" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "A" - {} - { "B" } ] - - location: 32 (just consumed gas: 0.010) - [ "A" - True - {} - { "B" } ] - - location: 33 (just consumed gas: 0.132) - [ { "A" } - { "B" } ] - - location: 21 (just consumed gas: 0.015) - [ { "A" } - { "B" } ] - - location: 34 (just consumed gas: 0.010) - [ True - { "A" } - { "B" } ] - - location: 37 (just consumed gas: 0.010) - [ { "A" } - True - { "B" } ] - - location: 38 (just consumed gas: 0.010) - [ (Pair { "A" } True) - { "B" } ] - - location: 39 (just consumed gas: 0.010) - [ { "B" } - (Pair { "A" } True) ] - - location: 40 (just consumed gas: 0) - [ "B" - (Pair { "A" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "A" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "A" } True) - (Pair "B" { "A" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "A" } True) - (Pair "B" { "A" } True) - (Pair "B" { "A" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "A" } True) - (Pair "B" { "A" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "A" } True) - (Pair "B" { "A" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "A" } True) - (Pair "B" { "A" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "A" } - (Pair "B" { "A" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "A" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "A" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "A" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "A" } - { "A" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "A" } - { "A" } - True ] - - location: 57 (just consumed gas: 0.117) - [ False - { "A" } - True ] - - location: 58 (just consumed gas: 0) - [ { "A" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "A" } ] - - location: 58 (just consumed gas: 0.025) - [ False - True - { "A" } ] - - location: 61 (just consumed gas: 0.010) - [ False - { "A" } ] - - location: 62 (just consumed gas: 0.010) - [ { "A" } - False ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "A" } False) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair { "A" } False) ] - - location: 64 (just consumed gas: 0.010) - [ False ] - - location: 65 (just consumed gas: 0.010) - [ (Some False) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input772794967-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input772794967-.out deleted file mode 100644 index 992c28f781aa..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input772794967-.out +++ /dev/null @@ -1,63 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair {} {})' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.003) - [ (Pair (Pair {} {}) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} {}) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} {}) - (Pair {} {}) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Pair {} {}) ] - - location: 15 (just consumed gas: 0) - [ (Pair {} {}) ] - - location: 17 (just consumed gas: 0.010) - [ {} ] - - location: 15 (just consumed gas: 0.025) - [ {} - {} ] - - location: 18 (just consumed gas: 0.300) - [ {} - {} - {} ] - - location: 20 (just consumed gas: 0.010) - [ {} - {} - {} ] - - location: 21 (just consumed gas: 0) - [ {} - {} ] - - location: 34 (just consumed gas: 0.010) - [ True - {} - {} ] - - location: 37 (just consumed gas: 0.010) - [ {} - True - {} ] - - location: 38 (just consumed gas: 0.010) - [ (Pair {} True) - {} ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Pair {} True) ] - - location: 40 (just consumed gas: 0) - [ (Pair {} True) ] - - location: 64 (just consumed gas: 0.010) - [ True ] - - location: 65 (just consumed gas: 0.010) - [ (Some True) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input917967660-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input917967660-.out deleted file mode 100644 index ca27ae3f9ca1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input917967660-.out +++ /dev/null @@ -1,437 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" })' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.931) - [ (Pair (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) - (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 14 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 15 (just consumed gas: 0) - [ (Pair { "B" ; "C" ; "asdf" } { "B" ; "B" ; "asdf" ; "C" }) ] - - location: 17 (just consumed gas: 0.010) - [ { "B" ; "B" ; "asdf" ; "C" } ] - - location: 15 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 18 (just consumed gas: 0.300) - [ {} - { "B" ; "C" ; "asdf" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 20 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0) - [ "B" - {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "B" {}) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "B" {}) - (Pair "B" {}) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (just consumed gas: 0.010) - [ "B" - (Pair "B" {}) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "B" {}) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025) - [ "B" - {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "B" - {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010) - [ "B" - True - {} - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.132) - [ { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015) - [ "C" - { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "C" { "B" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "C" { "B" }) - (Pair "C" { "B" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (just consumed gas: 0.010) - [ "C" - (Pair "C" { "B" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "C" { "B" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010) - [ { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025) - [ "C" - { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "C" - { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010) - [ "C" - True - { "B" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.134) - [ { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015) - [ "asdf" - { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" }) - (Pair "asdf" { "B" ; "C" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 25 (just consumed gas: 0.010) - [ "asdf" - (Pair "asdf" { "B" ; "C" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "asdf" { "B" ; "C" }) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 28 (just consumed gas: 0.010) - [ { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 26 (just consumed gas: 0.025) - [ "asdf" - { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "asdf" - { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 32 (just consumed gas: 0.010) - [ "asdf" - True - { "B" ; "C" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 33 (just consumed gas: 0.154) - [ { "B" ; "C" ; "asdf" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 21 (just consumed gas: 0.015) - [ { "B" ; "C" ; "asdf" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 34 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 37 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 38 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - { "B" ; "B" ; "asdf" ; "C" } ] - - location: 39 (just consumed gas: 0.010) - [ { "B" ; "B" ; "asdf" ; "C" } - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0) - [ "B" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.118) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ "B" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.118) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ "asdf" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "asdf" - (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "asdf" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "asdf" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.127) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ "C" - (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "C" - (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "C" { "B" ; "C" ; "asdf" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "C" - { "B" ; "C" ; "asdf" } - { "B" ; "C" ; "asdf" } - True ] - - location: 57 (just consumed gas: 0.118) - [ True - { "B" ; "C" ; "asdf" } - True ] - - location: 58 (just consumed gas: 0) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 58 (just consumed gas: 0.025) - [ True - True - { "B" ; "C" ; "asdf" } ] - - location: 61 (just consumed gas: 0.010) - [ True - { "B" ; "C" ; "asdf" } ] - - location: 62 (just consumed gas: 0.010) - [ { "B" ; "C" ; "asdf" } - True ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair { "B" ; "C" ; "asdf" } True) ] - - location: 64 (just consumed gas: 0.010) - [ True ] - - location: 65 (just consumed gas: 0.010) - [ (Some True) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input964818218-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input964818218-.out deleted file mode 100644 index 9a28f7ced157..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contains_all--storage921624073--input964818218-.out +++ /dev/null @@ -1,166 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contains_all.tz on storage None and input '(Pair { "c" } { "B" })' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 32.251) - [ (Pair (Pair { "c" } { "B" }) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { "c" } { "B" }) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "c" } { "B" }) - (Pair { "c" } { "B" }) ] - - location: 14 (just consumed gas: 0.010) - [ { "c" } - (Pair { "c" } { "B" }) ] - - location: 15 (just consumed gas: 0) - [ (Pair { "c" } { "B" }) ] - - location: 17 (just consumed gas: 0.010) - [ { "B" } ] - - location: 15 (just consumed gas: 0.025) - [ { "c" } - { "B" } ] - - location: 18 (just consumed gas: 0.300) - [ {} - { "c" } - { "B" } ] - - location: 20 (just consumed gas: 0.010) - [ { "c" } - {} - { "B" } ] - - location: 21 (just consumed gas: 0) - [ "c" - {} - { "B" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair "c" {}) - { "B" } ] - - location: 24 (just consumed gas: 0.010) - [ (Pair "c" {}) - (Pair "c" {}) - { "B" } ] - - location: 25 (just consumed gas: 0.010) - [ "c" - (Pair "c" {}) - { "B" } ] - - location: 26 (just consumed gas: 0) - [ (Pair "c" {}) - { "B" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "B" } ] - - location: 26 (just consumed gas: 0.025) - [ "c" - {} - { "B" } ] - - location: 29 (just consumed gas: 0.010) - [ True - "c" - {} - { "B" } ] - - location: 32 (just consumed gas: 0.010) - [ "c" - True - {} - { "B" } ] - - location: 33 (just consumed gas: 0.132) - [ { "c" } - { "B" } ] - - location: 21 (just consumed gas: 0.015) - [ { "c" } - { "B" } ] - - location: 34 (just consumed gas: 0.010) - [ True - { "c" } - { "B" } ] - - location: 37 (just consumed gas: 0.010) - [ { "c" } - True - { "B" } ] - - location: 38 (just consumed gas: 0.010) - [ (Pair { "c" } True) - { "B" } ] - - location: 39 (just consumed gas: 0.010) - [ { "B" } - (Pair { "c" } True) ] - - location: 40 (just consumed gas: 0) - [ "B" - (Pair { "c" } True) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair "B" { "c" } True) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair "B" { "c" } True) - (Pair "B" { "c" } True) ] - - location: 44 (just consumed gas: 0.010) - [ (Pair "B" { "c" } True) - (Pair "B" { "c" } True) - (Pair "B" { "c" } True) ] - - location: 45 (just consumed gas: 0.010) - [ "B" - (Pair "B" { "c" } True) - (Pair "B" { "c" } True) ] - - location: 46 (just consumed gas: 0) - [ (Pair "B" { "c" } True) - (Pair "B" { "c" } True) ] - - location: 49 (just consumed gas: 0.010) - [ (Pair { "c" } True) - (Pair "B" { "c" } True) ] - - location: 50 (just consumed gas: 0.010) - [ { "c" } - (Pair "B" { "c" } True) ] - - location: 51 (just consumed gas: 0) - [ (Pair "B" { "c" } True) ] - - location: 54 (just consumed gas: 0.010) - [ (Pair { "c" } True) ] - - location: 55 (just consumed gas: 0.010) - [ True ] - - location: 51 (just consumed gas: 0.025) - [ { "c" } - True ] - - location: 56 (just consumed gas: 0.010) - [ { "c" } - { "c" } - True ] - - location: 46 (just consumed gas: 0.025) - [ "B" - { "c" } - { "c" } - True ] - - location: 57 (just consumed gas: 0.117) - [ False - { "c" } - True ] - - location: 58 (just consumed gas: 0) - [ { "c" } - True ] - - location: 60 (just consumed gas: 0.010) - [ True - { "c" } ] - - location: 58 (just consumed gas: 0.025) - [ False - True - { "c" } ] - - location: 61 (just consumed gas: 0.010) - [ False - { "c" } ] - - location: 62 (just consumed gas: 0.010) - [ { "c" } - False ] - - location: 63 (just consumed gas: 0.010) - [ (Pair { "c" } False) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair { "c" } False) ] - - location: 64 (just consumed gas: 0.010) - [ False ] - - location: 65 (just consumed gas: 0.010) - [ (Some False) ] - - location: 66 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 68 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contract--storage125992234--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contract--storage125992234--input117475800-.out deleted file mode 100644 index 952f828355a0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -contract--storage125992234--input117475800-.out +++ /dev/null @@ -1,29 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/contract.tz on storage Unit and input '"tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 12.110) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - - location: 7 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 8 (just consumed gas: 0.310) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 11 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 11 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 17 (just consumed gas: 0.010) - [ ] - - location: 18 (just consumed gas: 0.010) - [ Unit ] - - location: 19 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -create_contract--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -create_contract--storage921624073--input125992234-.out deleted file mode 100644 index 60a97413061c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -create_contract--storage921624073--input125992234-.out +++ /dev/null @@ -1,49 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/create_contract.tz on storage None and input Unit --level 1 --trace-stack -storage - (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") -emitted operations - Internal Origination: - From: KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi - Credit: ꜩ0.05 - Script: - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract -big_map diff - -trace - - location: 8 (just consumed gas: 12.061) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ Unit ] - - location: 10 (just consumed gas: 0.010) - [ 50000 - Unit ] - - location: 11 (just consumed gas: 0.010) - [ None - 50000 - Unit ] - - location: 13 (just consumed gas: 0.716) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b - "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 25 (just consumed gas: 0) - [ "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm" ] - - location: 27 (just consumed gas: 0.010) - [ (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 28 (just consumed gas: 0.010) - [ {} - (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 25 (just consumed gas: 0.025) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b - {} - (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 30 (just consumed gas: 0.010) - [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } - (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm") ] - - location: 31 (just consumed gas: 0.010) - [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000002d08603000000001c02000000170500036c0501036c050202000000080317053d036d034200000002030b } - (Some "KT1Mjjcb6tmSsLm7Cb3DSQszePjfchPM4Uxm")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1011138251-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1011138251-.out deleted file mode 100644 index e11a81cd300e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1011138251-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 0)' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") - (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" - (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:00Z") ] - - location: 14 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:00:00Z" - "1970-01-01T00:00:00Z" ] - - location: 15 (just consumed gas: 0.035) - [ 0 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1018564342-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1018564342-.out deleted file mode 100644 index 498bf11f606c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1018564342-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 0 1)' --level 1 --trace-stack -storage - -1 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") 111) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") - (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" - (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:00:00Z" "1970-01-01T00:00:01Z") ] - - location: 14 (just consumed gas: 0.010) - [ "1970-01-01T00:00:01Z" ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:00:00Z" - "1970-01-01T00:00:01Z" ] - - location: 15 (just consumed gas: 0.035) - [ -1 ] - - location: 16 (just consumed gas: 0.010) - [ {} - -1 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} -1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1031049988-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1031049988-.out deleted file mode 100644 index b701c396341e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input1031049988-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z")' --level 1 --trace-stack -storage - 200 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.653) - [ (Pair (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") - (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:03:20Z" - (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:03:20Z" "1970-01-01T00:00:00Z") ] - - location: 14 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:03:20Z" - "1970-01-01T00:00:00Z" ] - - location: 15 (just consumed gas: 0.035) - [ 200 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 200 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 200) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input685590443-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input685590443-.out deleted file mode 100644 index c3e773dd06a0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -diff_timestamps--storage492856247--input685590443-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/diff_timestamps.tz on storage 111 and input '(Pair 1 0)' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") 111) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") - (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:00:01Z" - (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:00:01Z" "1970-01-01T00:00:00Z") ] - - location: 14 (just consumed gas: 0.010) - [ "1970-01-01T00:00:00Z" ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:00:01Z" - "1970-01-01T00:00:00Z" ] - - location: 15 (just consumed gas: 0.035) - [ 1 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input246866101-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input246866101-.out deleted file mode 100644 index f5bf535b0485..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input246866101-.out +++ /dev/null @@ -1,3431 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 17 (Pair 16 (Pair 15 (Pair 14 (Pair 13 (Pair 12 (Pair 11 (Pair 10 (Pair 9 (Pair 8 (Pair 7 (Pair 6 (Pair 5 (Pair 4 (Pair 3 (Pair 2 1))))))))))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 24 (just consumed gas: 159.743) - [ (Pair (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) Unit) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 27 (just consumed gas: 0.010) - [ 17 - (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 28 (just consumed gas: 0) - [ (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 30 (just consumed gas: 0.010) - [ 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 28 (just consumed gas: 0.025) - [ 17 - 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (just consumed gas: 0) - [ (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 34 (just consumed gas: 0.010) - [ 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (just consumed gas: 0.025) - [ 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (just consumed gas: 0.010) - [ 17 - 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 31 (just consumed gas: 0) - [ 17 - 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (just consumed gas: 0) - [ (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 38 (just consumed gas: 0.010) - [ 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (just consumed gas: 0.025) - [ 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (just consumed gas: 0.010) - [ 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 35 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0) - [ (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 42 (just consumed gas: 0.010) - [ 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0.025) - [ 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0.010) - [ 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 39 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0) - [ (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 46 (just consumed gas: 0.010) - [ 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0.025) - [ 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0.010) - [ 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 43 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0) - [ (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 50 (just consumed gas: 0.010) - [ 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.025) - [ 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.010) - [ 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 47 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0) - [ (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 54 (just consumed gas: 0.010) - [ 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.025) - [ 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 51 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0) - [ (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 58 (just consumed gas: 0.010) - [ 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.025) - [ 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 55 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0) - [ (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 62 (just consumed gas: 0.010) - [ 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.025) - [ 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 59 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0) - [ (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 66 (just consumed gas: 0.010) - [ 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.025) - [ 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 63 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0) - [ (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 70 (just consumed gas: 0.010) - [ 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.025) - [ 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 67 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0) - [ (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 74 (just consumed gas: 0.010) - [ 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.025) - [ 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 71 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0) - [ (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 78 (just consumed gas: 0.010) - [ 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.025) - [ 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 75 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0) - [ (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 82 (just consumed gas: 0.010) - [ 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.025) - [ 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 79 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0) - [ (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 86 (just consumed gas: 0.010) - [ 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.025) - [ 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 83 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 87 (just consumed gas: 0.030) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 89 (just consumed gas: 0.036) - [ 16 - 17 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 91 (just consumed gas: 0.043) - [ 15 - 16 - 17 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 93 (just consumed gas: 0.049) - [ 14 - 15 - 16 - 17 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 95 (just consumed gas: 0.057) - [ 13 - 14 - 15 - 16 - 17 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 97 (just consumed gas: 0.063) - [ 12 - 13 - 14 - 15 - 16 - 17 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 99 (just consumed gas: 0.070) - [ 11 - 12 - 13 - 14 - 15 - 16 - 17 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 101 (just consumed gas: 0.076) - [ 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 103 (just consumed gas: 0.084) - [ 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 105 (just consumed gas: 0.090) - [ 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 107 (just consumed gas: 0.097) - [ 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 109 (just consumed gas: 0.103) - [ 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 111 (just consumed gas: 0.111) - [ 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 113 (just consumed gas: 0.117) - [ 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 115 (just consumed gas: 0.124) - [ 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 117 (just consumed gas: 0.130) - [ 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 119 (just consumed gas: 0.138) - [ 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 121 (just consumed gas: 0.030) - [ 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 123 (just consumed gas: 0.036) - [ 2 - 1 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 125 (just consumed gas: 0.043) - [ 3 - 2 - 1 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 127 (just consumed gas: 0.049) - [ 4 - 3 - 2 - 1 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 129 (just consumed gas: 0.057) - [ 5 - 4 - 3 - 2 - 1 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 131 (just consumed gas: 0.063) - [ 6 - 5 - 4 - 3 - 2 - 1 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 133 (just consumed gas: 0.070) - [ 7 - 6 - 5 - 4 - 3 - 2 - 1 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 135 (just consumed gas: 0.076) - [ 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 137 (just consumed gas: 0.084) - [ 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 139 (just consumed gas: 0.090) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 141 (just consumed gas: 0.097) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 12 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 143 (just consumed gas: 0.103) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 13 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 145 (just consumed gas: 0.111) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 14 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 147 (just consumed gas: 0.117) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 15 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 149 (just consumed gas: 0.124) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 16 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 151 (just consumed gas: 0.130) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 17 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 153 (just consumed gas: 0.138) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0) - [ 2 - 1 - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 159 (just consumed gas: 0.010) - [ (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.025) - [ 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 156 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0) - [ 3 - (Pair 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 163 (just consumed gas: 0.010) - [ (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.025) - [ 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 160 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0) - [ 4 - (Pair 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 167 (just consumed gas: 0.010) - [ (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.025) - [ 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 164 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0) - [ 5 - (Pair 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 171 (just consumed gas: 0.010) - [ (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.025) - [ 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 168 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0) - [ 6 - (Pair 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 175 (just consumed gas: 0.010) - [ (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.025) - [ 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 172 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0) - [ 7 - (Pair 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 179 (just consumed gas: 0.010) - [ (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.025) - [ 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 176 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0) - [ 8 - (Pair 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 183 (just consumed gas: 0.010) - [ (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.025) - [ 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 180 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0) - [ 9 - (Pair 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 187 (just consumed gas: 0.010) - [ (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.025) - [ 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 184 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0) - [ 10 - (Pair 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 191 (just consumed gas: 0.010) - [ (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.025) - [ 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 188 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0) - [ 11 - (Pair 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 195 (just consumed gas: 0.010) - [ (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.025) - [ 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.010) - [ 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.010) - [ 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.010) - [ 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 192 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0) - [ 12 - (Pair 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 199 (just consumed gas: 0.010) - [ (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0.025) - [ 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0.010) - [ 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0.010) - [ 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0.010) - [ 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 196 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0) - [ 13 - (Pair 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 203 (just consumed gas: 0.010) - [ (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0.025) - [ 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0.010) - [ 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0.010) - [ 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0.010) - [ 17 - 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 200 (just consumed gas: 0) - [ 17 - 16 - 15 - 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (just consumed gas: 0) - [ 14 - (Pair 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 207 (just consumed gas: 0.010) - [ (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (just consumed gas: 0.025) - [ 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (just consumed gas: 0.010) - [ 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (just consumed gas: 0.010) - [ 17 - 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 204 (just consumed gas: 0) - [ 17 - 16 - 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (just consumed gas: 0) - [ 15 - (Pair 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 211 (just consumed gas: 0.010) - [ (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (just consumed gas: 0.025) - [ 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (just consumed gas: 0.010) - [ 17 - 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 208 (just consumed gas: 0) - [ 17 - 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 212 (just consumed gas: 0) - [ 16 - (Pair 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 214 (just consumed gas: 0.010) - [ (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 212 (just consumed gas: 0.025) - [ 17 - (Pair 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 215 (just consumed gas: 0.010) - [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) - (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] - - location: 218 (just consumed gas: 0.755) - [ 0 ] - - location: 219 (just consumed gas: 0.010) - [ True ] - - location: 220 (just consumed gas: 0) - [ ] - - location: 220 (just consumed gas: 0.015) - [ ] - - location: 226 (just consumed gas: 0.010) - [ Unit ] - - location: 227 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 229 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input26856104-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input26856104-.out deleted file mode 100644 index 58992c62bceb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dig_eq--storage125992234--input26856104-.out +++ /dev/null @@ -1,3431 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dig_eq.tz on storage Unit and input '(Pair 2 (Pair 3 (Pair 12 (Pair 16 (Pair 10 (Pair 14 (Pair 19 (Pair 9 (Pair 18 (Pair 6 (Pair 8 (Pair 11 (Pair 4 (Pair 13 (Pair 15 (Pair 5 1))))))))))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 24 (just consumed gas: 159.743) - [ (Pair (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) Unit) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 27 (just consumed gas: 0.010) - [ 2 - (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 28 (just consumed gas: 0) - [ (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 30 (just consumed gas: 0.010) - [ 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 28 (just consumed gas: 0.025) - [ 2 - 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (just consumed gas: 0) - [ (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 34 (just consumed gas: 0.010) - [ 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (just consumed gas: 0.025) - [ 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (just consumed gas: 0.010) - [ 2 - 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 31 (just consumed gas: 0) - [ 2 - 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (just consumed gas: 0) - [ (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 38 (just consumed gas: 0.010) - [ 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (just consumed gas: 0.025) - [ 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (just consumed gas: 0.010) - [ 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 35 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0) - [ (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 42 (just consumed gas: 0.010) - [ 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0.025) - [ 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0.010) - [ 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 39 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0) - [ (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 46 (just consumed gas: 0.010) - [ 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0.025) - [ 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0.010) - [ 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 43 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0) - [ (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 50 (just consumed gas: 0.010) - [ 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.025) - [ 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.010) - [ 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 47 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0) - [ (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 54 (just consumed gas: 0.010) - [ 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.025) - [ 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 51 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0) - [ (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 58 (just consumed gas: 0.010) - [ 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.025) - [ 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 55 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0) - [ (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 62 (just consumed gas: 0.010) - [ 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.025) - [ 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 59 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0) - [ (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 66 (just consumed gas: 0.010) - [ 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.025) - [ 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 63 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0) - [ (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 70 (just consumed gas: 0.010) - [ 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.025) - [ 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 67 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0) - [ (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 74 (just consumed gas: 0.010) - [ 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.025) - [ 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 71 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0) - [ (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 78 (just consumed gas: 0.010) - [ 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.025) - [ 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 75 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0) - [ (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 82 (just consumed gas: 0.010) - [ 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.025) - [ 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 79 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0) - [ (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 86 (just consumed gas: 0.010) - [ 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.025) - [ 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 83 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 87 (just consumed gas: 0.030) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 89 (just consumed gas: 0.036) - [ 3 - 2 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 91 (just consumed gas: 0.043) - [ 12 - 3 - 2 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 93 (just consumed gas: 0.049) - [ 16 - 12 - 3 - 2 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 95 (just consumed gas: 0.057) - [ 10 - 16 - 12 - 3 - 2 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 97 (just consumed gas: 0.063) - [ 14 - 10 - 16 - 12 - 3 - 2 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 99 (just consumed gas: 0.070) - [ 19 - 14 - 10 - 16 - 12 - 3 - 2 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 101 (just consumed gas: 0.076) - [ 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 103 (just consumed gas: 0.084) - [ 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 105 (just consumed gas: 0.090) - [ 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 107 (just consumed gas: 0.097) - [ 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 109 (just consumed gas: 0.103) - [ 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 111 (just consumed gas: 0.111) - [ 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 113 (just consumed gas: 0.117) - [ 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 115 (just consumed gas: 0.124) - [ 15 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 117 (just consumed gas: 0.130) - [ 5 - 15 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 119 (just consumed gas: 0.138) - [ 1 - 5 - 15 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 121 (just consumed gas: 0.030) - [ 1 - 5 - 15 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 123 (just consumed gas: 0.036) - [ 5 - 1 - 15 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 125 (just consumed gas: 0.043) - [ 15 - 5 - 1 - 13 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 127 (just consumed gas: 0.049) - [ 13 - 15 - 5 - 1 - 4 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 129 (just consumed gas: 0.057) - [ 4 - 13 - 15 - 5 - 1 - 11 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 131 (just consumed gas: 0.063) - [ 11 - 4 - 13 - 15 - 5 - 1 - 8 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 133 (just consumed gas: 0.070) - [ 8 - 11 - 4 - 13 - 15 - 5 - 1 - 6 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 135 (just consumed gas: 0.076) - [ 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 18 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 137 (just consumed gas: 0.084) - [ 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 9 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 139 (just consumed gas: 0.090) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 19 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 141 (just consumed gas: 0.097) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 14 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 143 (just consumed gas: 0.103) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 10 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 145 (just consumed gas: 0.111) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 16 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 147 (just consumed gas: 0.117) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 12 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 149 (just consumed gas: 0.124) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 3 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 151 (just consumed gas: 0.130) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - 2 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 153 (just consumed gas: 0.138) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0) - [ 5 - 1 - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 159 (just consumed gas: 0.010) - [ (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.025) - [ 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 156 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0) - [ 15 - (Pair 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 163 (just consumed gas: 0.010) - [ (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.025) - [ 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 160 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0) - [ 13 - (Pair 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 167 (just consumed gas: 0.010) - [ (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.025) - [ 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 164 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0) - [ 4 - (Pair 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 171 (just consumed gas: 0.010) - [ (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.025) - [ 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 168 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0) - [ 11 - (Pair 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 175 (just consumed gas: 0.010) - [ (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.025) - [ 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 172 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0) - [ 8 - (Pair 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 179 (just consumed gas: 0.010) - [ (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.025) - [ 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 176 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0) - [ 6 - (Pair 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 183 (just consumed gas: 0.010) - [ (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.025) - [ 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 180 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0) - [ 18 - (Pair 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 187 (just consumed gas: 0.010) - [ (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.025) - [ 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 184 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0) - [ 9 - (Pair 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 191 (just consumed gas: 0.010) - [ (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.025) - [ 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 188 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0) - [ 19 - (Pair 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 195 (just consumed gas: 0.010) - [ (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.025) - [ 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.010) - [ 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.010) - [ 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.010) - [ 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 192 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0) - [ 14 - (Pair 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 199 (just consumed gas: 0.010) - [ (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0.025) - [ 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0.010) - [ 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0.010) - [ 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0.010) - [ 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 196 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0) - [ 10 - (Pair 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 203 (just consumed gas: 0.010) - [ (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0.025) - [ 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0.010) - [ 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0.010) - [ 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0.010) - [ 2 - 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 200 (just consumed gas: 0) - [ 2 - 3 - 12 - 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (just consumed gas: 0) - [ 16 - (Pair 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 207 (just consumed gas: 0.010) - [ (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (just consumed gas: 0.025) - [ 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (just consumed gas: 0.010) - [ 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (just consumed gas: 0.010) - [ 2 - 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 204 (just consumed gas: 0) - [ 2 - 3 - 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (just consumed gas: 0) - [ 12 - (Pair 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 211 (just consumed gas: 0.010) - [ (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (just consumed gas: 0.025) - [ 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (just consumed gas: 0.010) - [ 2 - 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 208 (just consumed gas: 0) - [ 2 - 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 212 (just consumed gas: 0) - [ 3 - (Pair 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 214 (just consumed gas: 0.010) - [ (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 212 (just consumed gas: 0.025) - [ 2 - (Pair 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 215 (just consumed gas: 0.010) - [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) - (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] - - location: 218 (just consumed gas: 0.755) - [ 0 ] - - location: 219 (just consumed gas: 0.010) - [ True ] - - location: 220 (just consumed gas: 0) - [ ] - - location: 220 (just consumed gas: 0.015) - [ ] - - location: 226 (just consumed gas: 0.010) - [ Unit ] - - location: 227 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 229 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dign--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dign--storage680650890--input529388602-.out deleted file mode 100644 index 4e77c43336f0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dign--storage680650890--input529388602-.out +++ /dev/null @@ -1,61 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dign.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack -storage - 5 -emitted operations - -big_map diff - -trace - - location: 15 (just consumed gas: 11.955) - [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair (Pair 1 2) 3) 4) - 5 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair (Pair 1 2) 3) - 4 - 5 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 1 2) - 3 - 4 - 5 ] - - location: 19 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 20 (just consumed gas: 0.057) - [ 5 - 1 - 2 - 3 - 4 ] - - location: 22 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 ] - - location: 24 (just consumed gas: 0.010) - [ 2 - 3 - 4 ] - - location: 25 (just consumed gas: 0.010) - [ 3 - 4 ] - - location: 26 (just consumed gas: 0.010) - [ 4 ] - - location: 27 (just consumed gas: 0.010) - [ ] - - location: 22 (just consumed gas: 0.025) - [ 5 ] - - location: 28 (just consumed gas: 0.010) - [ {} - 5 ] - - location: 30 (just consumed gas: 0.010) - [ (Pair {} 5) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input590117173-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input590117173-.out deleted file mode 100644 index a2d190397f08..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input590117173-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 1 1)' --level 1 --trace-stack -storage - (Pair 1 2) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 7.912) - [ (Pair (Pair 1 1) 0 0) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 1 1) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 13 (just consumed gas: 0.010) - [ 1 - 1 - 1 ] - - location: 14 (just consumed gas: 0) - [ 1 - 1 ] - - location: 16 (just consumed gas: 0.035) - [ 2 ] - - location: 14 (just consumed gas: 0.025) - [ 1 - 2 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair 1 2) ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Pair 1 2) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} 1 2) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input850887554-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input850887554-.out deleted file mode 100644 index 0db2165e36d6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dip--storage1011138251--input850887554-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dip.tz on storage '(Pair 0 0)' and input '(Pair 15 9)' --level 1 --trace-stack -storage - (Pair 15 24) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 7.912) - [ (Pair (Pair 15 9) 0 0) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 15 9) ] - - location: 12 (just consumed gas: 0.010) - [ 15 - 9 ] - - location: 13 (just consumed gas: 0.010) - [ 15 - 15 - 9 ] - - location: 14 (just consumed gas: 0) - [ 15 - 9 ] - - location: 16 (just consumed gas: 0.035) - [ 24 ] - - location: 14 (just consumed gas: 0.025) - [ 15 - 24 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair 15 24) ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Pair 15 24) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} 15 24) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dipn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dipn--storage680650890--input529388602-.out deleted file mode 100644 index e4ee374fedf8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dipn--storage680650890--input529388602-.out +++ /dev/null @@ -1,93 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dipn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack -storage - 6 -emitted operations - -big_map diff - -trace - - location: 15 (just consumed gas: 13.205) - [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair (Pair 1 2) 3) 4) - 5 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair (Pair 1 2) 3) - 4 - 5 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 1 2) - 3 - 4 - 5 ] - - location: 19 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 20 (just consumed gas: 0) - [ ] - - location: 23 (just consumed gas: 0.010) - [ 6 ] - - location: 20 (just consumed gas: 0.025) - [ 5 - 6 ] - - location: 20 (just consumed gas: 0.010) - [ 4 - 5 - 6 ] - - location: 20 (just consumed gas: 0.010) - [ 3 - 4 - 5 - 6 ] - - location: 20 (just consumed gas: 0.010) - [ 2 - 3 - 4 - 5 - 6 ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 - 6 ] - - location: 20 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 - 6 ] - - location: 26 (just consumed gas: 0.010) - [ 2 - 3 - 4 - 5 - 6 ] - - location: 27 (just consumed gas: 0.010) - [ 3 - 4 - 5 - 6 ] - - location: 28 (just consumed gas: 0.010) - [ 4 - 5 - 6 ] - - location: 29 (just consumed gas: 0.010) - [ 5 - 6 ] - - location: 30 (just consumed gas: 0.010) - [ 6 ] - - location: 31 (just consumed gas: 0.010) - [ {} - 6 ] - - location: 33 (just consumed gas: 0.010) - [ (Pair {} 6) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dropn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dropn--storage680650890--input529388602-.out deleted file mode 100644 index 3e991cde2d00..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dropn--storage680650890--input529388602-.out +++ /dev/null @@ -1,39 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dropn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack -storage - 5 -emitted operations - -big_map diff - -trace - - location: 15 (just consumed gas: 9.048) - [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair (Pair 1 2) 3) 4) - 5 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair (Pair 1 2) 3) - 4 - 5 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 1 2) - 3 - 4 - 5 ] - - location: 19 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 20 (just consumed gas: 0.040) - [ 5 ] - - location: 22 (just consumed gas: 0.010) - [ {} - 5 ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} 5) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dugn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dugn--storage680650890--input529388602-.out deleted file mode 100644 index b50e33f25ea7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dugn--storage680650890--input529388602-.out +++ /dev/null @@ -1,57 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dugn.tz on storage 0 and input '(Pair (Pair (Pair (Pair 1 2) 3) 4) 5)' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 15 (just consumed gas: 11.279) - [ (Pair (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) 0) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair (Pair 1 2) 3) 4) 5) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair (Pair 1 2) 3) 4) - 5 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair (Pair 1 2) 3) - 4 - 5 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 1 2) - 3 - 4 - 5 ] - - location: 19 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 20 (just consumed gas: 0.062) - [ 2 - 3 - 4 - 5 - 1 ] - - location: 22 (just consumed gas: 0.010) - [ 3 - 4 - 5 - 1 ] - - location: 23 (just consumed gas: 0.010) - [ 4 - 5 - 1 ] - - location: 24 (just consumed gas: 0.010) - [ 5 - 1 ] - - location: 25 (just consumed gas: 0.010) - [ 1 ] - - location: 26 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 28 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dup-n--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dup-n--storage125992234--input125992234-.out deleted file mode 100644 index d6d4ca7ddfef..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -dup-n--storage125992234--input125992234-.out +++ /dev/null @@ -1,248 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/dup-n.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 42.228) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 5 ] - - location: 11 (just consumed gas: 0.010) - [ 4 - 5 ] - - location: 14 (just consumed gas: 0.010) - [ 3 - 4 - 5 ] - - location: 17 (just consumed gas: 0.010) - [ 2 - 3 - 4 - 5 ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 23 (just consumed gas: 0.021) - [ 1 - 1 - 2 - 3 - 4 - 5 ] - - location: 25 (just consumed gas: 0.010) - [ 1 - 1 - 1 - 2 - 3 - 4 - 5 ] - - location: 30 (just consumed gas: 0.035) - [ 0 - 1 - 2 - 3 - 4 - 5 ] - - location: 31 (just consumed gas: 0.010) - [ True - 1 - 2 - 3 - 4 - 5 ] - - location: 32 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 32 (just consumed gas: 0.015) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 38 (just consumed gas: 0.022) - [ 2 - 1 - 2 - 3 - 4 - 5 ] - - location: 40 (just consumed gas: 0.010) - [ 2 - 2 - 1 - 2 - 3 - 4 - 5 ] - - location: 45 (just consumed gas: 0.035) - [ 0 - 1 - 2 - 3 - 4 - 5 ] - - location: 46 (just consumed gas: 0.010) - [ True - 1 - 2 - 3 - 4 - 5 ] - - location: 47 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 47 (just consumed gas: 0.015) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 53 (just consumed gas: 0.023) - [ 3 - 1 - 2 - 3 - 4 - 5 ] - - location: 55 (just consumed gas: 0.010) - [ 3 - 3 - 1 - 2 - 3 - 4 - 5 ] - - location: 60 (just consumed gas: 0.035) - [ 0 - 1 - 2 - 3 - 4 - 5 ] - - location: 61 (just consumed gas: 0.010) - [ True - 1 - 2 - 3 - 4 - 5 ] - - location: 62 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 62 (just consumed gas: 0.015) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 68 (just consumed gas: 0.025) - [ 4 - 1 - 2 - 3 - 4 - 5 ] - - location: 70 (just consumed gas: 0.010) - [ 4 - 4 - 1 - 2 - 3 - 4 - 5 ] - - location: 75 (just consumed gas: 0.035) - [ 0 - 1 - 2 - 3 - 4 - 5 ] - - location: 76 (just consumed gas: 0.010) - [ True - 1 - 2 - 3 - 4 - 5 ] - - location: 77 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 77 (just consumed gas: 0.015) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 83 (just consumed gas: 0.026) - [ 5 - 1 - 2 - 3 - 4 - 5 ] - - location: 85 (just consumed gas: 0.010) - [ 5 - 5 - 1 - 2 - 3 - 4 - 5 ] - - location: 90 (just consumed gas: 0.035) - [ 0 - 1 - 2 - 3 - 4 - 5 ] - - location: 91 (just consumed gas: 0.010) - [ True - 1 - 2 - 3 - 4 - 5 ] - - location: 92 (just consumed gas: 0) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 92 (just consumed gas: 0.015) - [ 1 - 2 - 3 - 4 - 5 ] - - location: 98 (just consumed gas: 0.042) - [ ] - - location: 100 (just consumed gas: 0.010) - [ Unit ] - - location: 101 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 103 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input247451205-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input247451205-.out deleted file mode 100644 index a86319c1f1cf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input247451205-.out +++ /dev/null @@ -1,142 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 0)' --level 1 --trace-stack -storage - (Pair None None None None) -emitted operations - -big_map diff - -trace - - location: 25 (just consumed gas: 25.562) - [ (Pair (Pair 10 0) None None None None) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair 10 0) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair 10 0) - (Pair 10 0) ] - - location: 27 (just consumed gas: 0.010) - [ 10 - 0 - (Pair 10 0) ] - - location: 28 (just consumed gas: 0.020) - [ 10 - 0 - (Pair 10 0) ] - - location: 29 (just consumed gas: 0) - [ 0 - (Pair 10 0) ] - - location: 31 (just consumed gas: 0.020) - [ 0 - (Pair 10 0) ] - - location: 29 (just consumed gas: 0.025) - [ 10 - 0 - (Pair 10 0) ] - - location: 32 (just consumed gas: 0.105) - [ None - (Pair 10 0) ] - - location: 33 (just consumed gas: 0.010) - [ (Pair 10 0) - None ] - - location: 34 (just consumed gas: 0.010) - [ (Pair 10 0) - (Pair 10 0) - None ] - - location: 35 (just consumed gas: 0.010) - [ 10 - 0 - (Pair 10 0) - None ] - - location: 36 (just consumed gas: 0.020) - [ 10 - 0 - (Pair 10 0) - None ] - - location: 37 (just consumed gas: 0.105) - [ None - (Pair 10 0) - None ] - - location: 38 (just consumed gas: 0.010) - [ (Pair 10 0) - None - None ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 10 0) - (Pair 10 0) - None - None ] - - location: 40 (just consumed gas: 0.010) - [ 10 - 0 - (Pair 10 0) - None - None ] - - location: 41 (just consumed gas: 0) - [ 0 - (Pair 10 0) - None - None ] - - location: 43 (just consumed gas: 0.020) - [ 0 - (Pair 10 0) - None - None ] - - location: 41 (just consumed gas: 0.025) - [ 10 - 0 - (Pair 10 0) - None - None ] - - location: 44 (just consumed gas: 0.105) - [ None - (Pair 10 0) - None - None ] - - location: 45 (just consumed gas: 0.010) - [ (Pair 10 0) - None - None - None ] - - location: 46 (just consumed gas: 0.010) - [ 10 - 0 - None - None - None ] - - location: 47 (just consumed gas: 0.105) - [ None - None - None - None ] - - location: 49 (just consumed gas: 0) - [ None - None ] - - location: 52 (just consumed gas: 0.010) - [ (Pair None None) ] - - location: 49 (just consumed gas: 0.025) - [ None - (Pair None None) ] - - location: 49 (just consumed gas: 0.010) - [ None - None - (Pair None None) ] - - location: 49 (just consumed gas: 0) - [ None - None - (Pair None None) ] - - location: 53 (just consumed gas: 0) - [ None - (Pair None None) ] - - location: 55 (just consumed gas: 0.010) - [ (Pair None None None) ] - - location: 53 (just consumed gas: 0.025) - [ None - (Pair None None None) ] - - location: 56 (just consumed gas: 0.010) - [ (Pair None None None None) ] - - location: 57 (just consumed gas: 0.010) - [ {} - (Pair None None None None) ] - - location: 59 (just consumed gas: 0.010) - [ (Pair {} None None None None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input250545589-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input250545589-.out deleted file mode 100644 index 9148654e4c92..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input250545589-.out +++ /dev/null @@ -1,142 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair -8 2)' --level 1 --trace-stack -storage - (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) -emitted operations - -big_map diff - -trace - - location: 25 (just consumed gas: 25.562) - [ (Pair (Pair -8 2) None None None None) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair -8 2) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair -8 2) - (Pair -8 2) ] - - location: 27 (just consumed gas: 0.010) - [ -8 - 2 - (Pair -8 2) ] - - location: 28 (just consumed gas: 0.020) - [ 8 - 2 - (Pair -8 2) ] - - location: 29 (just consumed gas: 0) - [ 2 - (Pair -8 2) ] - - location: 31 (just consumed gas: 0.020) - [ 2 - (Pair -8 2) ] - - location: 29 (just consumed gas: 0.025) - [ 8 - 2 - (Pair -8 2) ] - - location: 32 (just consumed gas: 0.105) - [ (Some (Pair 4 0)) - (Pair -8 2) ] - - location: 33 (just consumed gas: 0.010) - [ (Pair -8 2) - (Some (Pair 4 0)) ] - - location: 34 (just consumed gas: 0.010) - [ (Pair -8 2) - (Pair -8 2) - (Some (Pair 4 0)) ] - - location: 35 (just consumed gas: 0.010) - [ -8 - 2 - (Pair -8 2) - (Some (Pair 4 0)) ] - - location: 36 (just consumed gas: 0.020) - [ 8 - 2 - (Pair -8 2) - (Some (Pair 4 0)) ] - - location: 37 (just consumed gas: 0.105) - [ (Some (Pair 4 0)) - (Pair -8 2) - (Some (Pair 4 0)) ] - - location: 38 (just consumed gas: 0.010) - [ (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 39 (just consumed gas: 0.010) - [ (Pair -8 2) - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 40 (just consumed gas: 0.010) - [ -8 - 2 - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 41 (just consumed gas: 0) - [ 2 - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 43 (just consumed gas: 0.020) - [ 2 - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 41 (just consumed gas: 0.025) - [ -8 - 2 - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 44 (just consumed gas: 0.105) - [ (Some (Pair -4 0)) - (Pair -8 2) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 45 (just consumed gas: 0.010) - [ (Pair -8 2) - (Some (Pair -4 0)) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 46 (just consumed gas: 0.010) - [ -8 - 2 - (Some (Pair -4 0)) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 47 (just consumed gas: 0.105) - [ (Some (Pair -4 0)) - (Some (Pair -4 0)) - (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 49 (just consumed gas: 0) - [ (Some (Pair 4 0)) - (Some (Pair 4 0)) ] - - location: 52 (just consumed gas: 0.010) - [ (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (just consumed gas: 0.025) - [ (Some (Pair -4 0)) - (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (just consumed gas: 0.010) - [ (Some (Pair -4 0)) - (Some (Pair -4 0)) - (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 49 (just consumed gas: 0) - [ (Some (Pair -4 0)) - (Some (Pair -4 0)) - (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (just consumed gas: 0) - [ (Some (Pair -4 0)) - (Pair (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 55 (just consumed gas: 0.010) - [ (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 53 (just consumed gas: 0.025) - [ (Some (Pair -4 0)) - (Pair (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 56 (just consumed gas: 0.010) - [ (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 57 (just consumed gas: 0.010) - [ {} - (Pair (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - - location: 59 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair -4 0)) (Some (Pair -4 0)) (Some (Pair 4 0)) (Some (Pair 4 0))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input79625541-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input79625541-.out deleted file mode 100644 index c180a4098199..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv--storage994417987--input79625541-.out +++ /dev/null @@ -1,142 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv.tz on storage '(Pair None None None None)' and input '(Pair 10 -3)' --level 1 --trace-stack -storage - (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) -emitted operations - -big_map diff - -trace - - location: 25 (just consumed gas: 25.562) - [ (Pair (Pair 10 -3) None None None None) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair 10 -3) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Pair 10 -3) ] - - location: 27 (just consumed gas: 0.010) - [ 10 - -3 - (Pair 10 -3) ] - - location: 28 (just consumed gas: 0.020) - [ 10 - -3 - (Pair 10 -3) ] - - location: 29 (just consumed gas: 0) - [ -3 - (Pair 10 -3) ] - - location: 31 (just consumed gas: 0.020) - [ 3 - (Pair 10 -3) ] - - location: 29 (just consumed gas: 0.025) - [ 10 - 3 - (Pair 10 -3) ] - - location: 32 (just consumed gas: 0.105) - [ (Some (Pair 3 1)) - (Pair 10 -3) ] - - location: 33 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Some (Pair 3 1)) ] - - location: 34 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Pair 10 -3) - (Some (Pair 3 1)) ] - - location: 35 (just consumed gas: 0.010) - [ 10 - -3 - (Pair 10 -3) - (Some (Pair 3 1)) ] - - location: 36 (just consumed gas: 0.020) - [ 10 - -3 - (Pair 10 -3) - (Some (Pair 3 1)) ] - - location: 37 (just consumed gas: 0.105) - [ (Some (Pair -3 1)) - (Pair 10 -3) - (Some (Pair 3 1)) ] - - location: 38 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 40 (just consumed gas: 0.010) - [ 10 - -3 - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 41 (just consumed gas: 0) - [ -3 - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 43 (just consumed gas: 0.020) - [ 3 - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 41 (just consumed gas: 0.025) - [ 10 - 3 - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 44 (just consumed gas: 0.105) - [ (Some (Pair 3 1)) - (Pair 10 -3) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 45 (just consumed gas: 0.010) - [ (Pair 10 -3) - (Some (Pair 3 1)) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 46 (just consumed gas: 0.010) - [ 10 - -3 - (Some (Pair 3 1)) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 47 (just consumed gas: 0.105) - [ (Some (Pair -3 1)) - (Some (Pair 3 1)) - (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 49 (just consumed gas: 0) - [ (Some (Pair -3 1)) - (Some (Pair 3 1)) ] - - location: 52 (just consumed gas: 0.010) - [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (just consumed gas: 0.025) - [ (Some (Pair 3 1)) - (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (just consumed gas: 0.010) - [ (Some (Pair -3 1)) - (Some (Pair 3 1)) - (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 49 (just consumed gas: 0) - [ (Some (Pair -3 1)) - (Some (Pair 3 1)) - (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (just consumed gas: 0) - [ (Some (Pair 3 1)) - (Pair (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 55 (just consumed gas: 0.010) - [ (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 53 (just consumed gas: 0.025) - [ (Some (Pair -3 1)) - (Pair (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 56 (just consumed gas: 0.010) - [ (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 57 (just consumed gas: 0.010) - [ {} - (Pair (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - - location: 59 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair -3 1)) (Some (Pair 3 1)) (Some (Pair -3 1)) (Some (Pair 3 1))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input147133089-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input147133089-.out deleted file mode 100644 index f14cabb9600e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input147133089-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 0))' --level 1 --trace-stack -storage - (Right None) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Right 0)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Right 0)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Right 0) ] - - location: 21 (just consumed gas: 0.010) - [ (Right 0) - 10 ] - - location: 22 (just consumed gas: 0) - [ 0 - 10 ] - - location: 32 (just consumed gas: 0.010) - [ 10 - 0 ] - - location: 33 (just consumed gas: 0.070) - [ None ] - - location: 34 (just consumed gas: 0.010) - [ (Right None) ] - - location: 22 (just consumed gas: 0.015) - [ (Right None) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Right None) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Right None)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input215785357-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input215785357-.out deleted file mode 100644 index 64a540e74439..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input215785357-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 3))' --level 1 --trace-stack -storage - (Right (Some (Pair 3 1))) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Right 3)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Right 3)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Right 3) ] - - location: 21 (just consumed gas: 0.010) - [ (Right 3) - 10 ] - - location: 22 (just consumed gas: 0) - [ 3 - 10 ] - - location: 32 (just consumed gas: 0.010) - [ 10 - 3 ] - - location: 33 (just consumed gas: 0.070) - [ (Some (Pair 3 1)) ] - - location: 34 (just consumed gas: 0.010) - [ (Right (Some (Pair 3 1))) ] - - location: 22 (just consumed gas: 0.015) - [ (Right (Some (Pair 3 1))) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Right (Some (Pair 3 1))) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Right (Some (Pair 3 1)))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input389351431-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input389351431-.out deleted file mode 100644 index 1dad76e11e24..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input389351431-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 10))' --level 1 --trace-stack -storage - (Left (Some (Pair 1 0))) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Left 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Left 10)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Left 10) ] - - location: 21 (just consumed gas: 0.010) - [ (Left 10) - 10 ] - - location: 22 (just consumed gas: 0) - [ 10 - 10 ] - - location: 24 (just consumed gas: 0.010) - [ 10 - 10 ] - - location: 25 (just consumed gas: 0.080) - [ (Some (Pair 1 0)) ] - - location: 26 (just consumed gas: 0.010) - [ (Left (Some (Pair 1 0))) ] - - location: 22 (just consumed gas: 0.015) - [ (Left (Some (Pair 1 0))) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Left (Some (Pair 1 0))) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Left (Some (Pair 1 0)))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input44513000-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input44513000-.out deleted file mode 100644 index cfcd71637b9c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input44513000-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 0))' --level 1 --trace-stack -storage - (Left None) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Left 0)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Left 0)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Left 0) ] - - location: 21 (just consumed gas: 0.010) - [ (Left 0) - 10 ] - - location: 22 (just consumed gas: 0) - [ 0 - 10 ] - - location: 24 (just consumed gas: 0.010) - [ 10 - 0 ] - - location: 25 (just consumed gas: 0.080) - [ None ] - - location: 26 (just consumed gas: 0.010) - [ (Left None) ] - - location: 22 (just consumed gas: 0.015) - [ (Left None) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Left None) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Left None)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input635398196-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input635398196-.out deleted file mode 100644 index 9a3980558fdb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input635398196-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Left 3))' --level 1 --trace-stack -storage - (Left (Some (Pair 3 1))) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Left 3)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Left 3)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Left 3) ] - - location: 21 (just consumed gas: 0.010) - [ (Left 3) - 10 ] - - location: 22 (just consumed gas: 0) - [ 3 - 10 ] - - location: 24 (just consumed gas: 0.010) - [ 10 - 3 ] - - location: 25 (just consumed gas: 0.080) - [ (Some (Pair 3 1)) ] - - location: 26 (just consumed gas: 0.010) - [ (Left (Some (Pair 3 1))) ] - - location: 22 (just consumed gas: 0.015) - [ (Left (Some (Pair 3 1))) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Left (Some (Pair 3 1))) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Left (Some (Pair 3 1)))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input734264738-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input734264738-.out deleted file mode 100644 index b89290c3d5ad..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input734264738-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 10 (Right 10))' --level 1 --trace-stack -storage - (Right (Some (Pair 1 0))) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 10 (Right 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 (Right 10)) ] - - location: 20 (just consumed gas: 0.010) - [ 10 - (Right 10) ] - - location: 21 (just consumed gas: 0.010) - [ (Right 10) - 10 ] - - location: 22 (just consumed gas: 0) - [ 10 - 10 ] - - location: 32 (just consumed gas: 0.010) - [ 10 - 10 ] - - location: 33 (just consumed gas: 0.070) - [ (Some (Pair 1 0)) ] - - location: 34 (just consumed gas: 0.010) - [ (Right (Some (Pair 1 0))) ] - - location: 22 (just consumed gas: 0.015) - [ (Right (Some (Pair 1 0))) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Right (Some (Pair 1 0))) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Right (Some (Pair 1 0)))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input993071382-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input993071382-.out deleted file mode 100644 index 890e8e6d52c4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ediv_mutez--storage977883604--input993071382-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ediv_mutez.tz on storage '(Left None)' and input '(Pair 5 (Right 10))' --level 1 --trace-stack -storage - (Right (Some (Pair 0 5))) -emitted operations - -big_map diff - -trace - - location: 19 (just consumed gas: 14.009) - [ (Pair (Pair 5 (Right 10)) (Left None)) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 5 (Right 10)) ] - - location: 20 (just consumed gas: 0.010) - [ 5 - (Right 10) ] - - location: 21 (just consumed gas: 0.010) - [ (Right 10) - 5 ] - - location: 22 (just consumed gas: 0) - [ 10 - 5 ] - - location: 32 (just consumed gas: 0.010) - [ 5 - 10 ] - - location: 33 (just consumed gas: 0.070) - [ (Some (Pair 0 5)) ] - - location: 34 (just consumed gas: 0.010) - [ (Right (Some (Pair 0 5))) ] - - location: 22 (just consumed gas: 0.015) - [ (Right (Some (Pair 0 5))) ] - - location: 39 (just consumed gas: 0.010) - [ {} - (Right (Some (Pair 0 5))) ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} (Right (Some (Pair 0 5)))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -emit--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -emit--storage125992234--input125992234-.out deleted file mode 100644 index 7c80f260006d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -emit--storage125992234--input125992234-.out +++ /dev/null @@ -1,72 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/emit.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - Internal Event: - From: KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi - Type: (or nat string) - Tag: event - Payload: (Left 10) - Internal Event: - From: KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi - Type: (or (nat %number) (string %words)) - Tag: event - Payload: (Right "lorem ipsum") -big_map diff - -trace - - location: 7 (just consumed gas: 13.135) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ Unit ] - - location: 9 (just consumed gas: 0.010) - [ 10 - Unit ] - - location: 12 (just consumed gas: 0.010) - [ (Left 10) - Unit ] - - location: 14 (just consumed gas: 0.487) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 15 (just consumed gas: 0.010) - [ "lorem ipsum" - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 18 (just consumed gas: 0.010) - [ (Right "lorem ipsum") - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 20 (just consumed gas: 0.572) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 24 (just consumed gas: 0.010) - [ {} - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 26 (just consumed gas: 0.010) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d - {} - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 27 (just consumed gas: 0.010) - [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - Unit ] - - location: 28 (just consumed gas: 0.010) - [ 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a - { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } - Unit ] - - location: 29 (just consumed gas: 0.010) - [ { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } - Unit ] - - location: 30 (just consumed gas: 0.010) - [ (Pair { 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600000004076403620368ffff056576656e74ff0505000a ; - 0x011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe6000001040764046200000007256e756d62657204680000000625776f726473ffff056576656e74ff0508010000000b6c6f72656d20697073756d } - Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -empty_map--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -empty_map--storage457300675--input125992234-.out deleted file mode 100644 index 46691e096a36..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -empty_map--storage457300675--input125992234-.out +++ /dev/null @@ -1,33 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/empty_map.tz on storage '{}' and input Unit --level 1 --trace-stack -storage - { Elt "hello" "world" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 8.379) - [ (Pair Unit {}) ] - - location: 9 (just consumed gas: 0.010) - [ ] - - location: 10 (just consumed gas: 0.300) - [ {} ] - - location: 13 (just consumed gas: 0.010) - [ "world" - {} ] - - location: 16 (just consumed gas: 0.010) - [ (Some "world") - {} ] - - location: 17 (just consumed gas: 0.010) - [ "hello" - (Some "world") - {} ] - - location: 20 (just consumed gas: 0.090) - [ { Elt "hello" "world" } ] - - location: 21 (just consumed gas: 0.010) - [ {} - { Elt "hello" "world" } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "hello" "world" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input246262487-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input246262487-.out deleted file mode 100644 index 36681502db31..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input246262487-.out +++ /dev/null @@ -1,48 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '"test"' --level 1 --trace-stack -storage - "test_abc" -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.941) - [ (Pair "test" "?") ] - - location: 7 (just consumed gas: 0.010) - [ "test" ] - - location: 8 (just consumed gas: 0.010) - [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } - "test" ] - - location: 22 (just consumed gas: 0.010) - [ "test" - { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (just consumed gas: 0.010) - [ "_abc" - "test" ] - - location: 15 (just consumed gas: 0.010) - [ {} - "_abc" - "test" ] - - location: 17 (just consumed gas: 0.010) - [ "_abc" - {} - "test" ] - - location: 18 (just consumed gas: 0.010) - [ { "_abc" } - "test" ] - - location: 19 (just consumed gas: 0.010) - [ "test" - { "_abc" } ] - - location: 20 (just consumed gas: 0.010) - [ { "test" ; "_abc" } ] - - location: 21 (just consumed gas: 0.124) - [ "test_abc" ] - - location: 23 (just consumed gas: 0.025) - [ "test_abc" ] - - location: 24 (just consumed gas: 0.010) - [ {} - "test_abc" ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} "test_abc") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input79230375-.out deleted file mode 100644 index 0d48071cda13..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -exec_concat--storage398998998--input79230375-.out +++ /dev/null @@ -1,48 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/exec_concat.tz on storage '"?"' and input '""' --level 1 --trace-stack -storage - "_abc" -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.901) - [ (Pair "" "?") ] - - location: 7 (just consumed gas: 0.010) - [ "" ] - - location: 8 (just consumed gas: 0.010) - [ { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } - "" ] - - location: 22 (just consumed gas: 0.010) - [ "" - { PUSH string "_abc" ; NIL string ; SWAP ; CONS ; SWAP ; CONS ; CONCAT } ] - - location: 12 (just consumed gas: 0.010) - [ "_abc" - "" ] - - location: 15 (just consumed gas: 0.010) - [ {} - "_abc" - "" ] - - location: 17 (just consumed gas: 0.010) - [ "_abc" - {} - "" ] - - location: 18 (just consumed gas: 0.010) - [ { "_abc" } - "" ] - - location: 19 (just consumed gas: 0.010) - [ "" - { "_abc" } ] - - location: 20 (just consumed gas: 0.010) - [ { "" ; "_abc" } ] - - location: 21 (just consumed gas: 0.122) - [ "_abc" ] - - location: 23 (just consumed gas: 0.025) - [ "_abc" ] - - location: 24 (just consumed gas: 0.010) - [ {} - "_abc" ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} "_abc") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input478406404-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input478406404-.out deleted file mode 100644 index fffe0dfc134d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input478406404-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 4 }' --level 1 --trace-stack -storage - 4 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.522) - [ (Pair { 4 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 4 } ] - - location: 9 (just consumed gas: 0) - [ 4 - {} ] - - location: 11 (just consumed gas: 0) - [ {} ] - - location: 13 (just consumed gas: 0.010) - [ ] - - location: 11 (just consumed gas: 0.025) - [ 4 ] - - location: 9 (just consumed gas: 0.015) - [ 4 ] - - location: 18 (just consumed gas: 0.010) - [ {} - 4 ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} 4) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input962874972-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input962874972-.out deleted file mode 100644 index b69c33c401f6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -first--storage492856247--input962874972-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/first.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 }' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.822) - [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 ; 4 } ] - - location: 9 (just consumed gas: 0) - [ 1 - { 2 ; 3 ; 4 } ] - - location: 11 (just consumed gas: 0) - [ { 2 ; 3 ; 4 } ] - - location: 13 (just consumed gas: 0.010) - [ ] - - location: 11 (just consumed gas: 0.025) - [ 1 ] - - location: 9 (just consumed gas: 0.015) - [ 1 ] - - location: 18 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage1026405794--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage1026405794--input329240220-.out deleted file mode 100644 index 51c368de501f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage1026405794--input329240220-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack -storage - (Pair (Some 4) {}) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.333) - [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair None { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - None - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.110) - [ (Some 4) - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 4) {}) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 4) {}) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 4) {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage382368661--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage382368661--input329240220-.out deleted file mode 100644 index 12dec11d689e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage382368661--input329240220-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --level 1 --trace-stack -storage - (Pair None { Elt "hello" 4 }) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.079) - [ (Pair "hello" (Some 4) {}) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair (Some 4) {}) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 4) {}) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 4) - {} ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - (Some 4) - {} ] - - location: 17 (just consumed gas: 0.095) - [ None - { Elt "hello" 4 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None { Elt "hello" 4 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None { Elt "hello" 4 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input329240220-.out deleted file mode 100644 index 72bbef302417..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input329240220-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --level 1 --trace-stack -storage - (Pair (Some 4) { Elt "hello" 5 }) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.433) - [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 5) - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - (Some 5) - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.110) - [ (Some 4) - { Elt "hello" 5 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 4) { Elt "hello" 5 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input507231566-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input507231566-.out deleted file mode 100644 index 30edc2e16647..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage496578814--input507231566-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --level 1 --trace-stack -storage - (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.403) - [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hi" - (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 5) - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hi" - (Some 5) - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.092) - [ None - { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage547821324--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage547821324--input329240220-.out deleted file mode 100644 index 694537527c78..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage547821324--input329240220-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None {})' and input '"hello"' --level 1 --trace-stack -storage - (Pair None {}) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 7.979) - [ (Pair "hello" None {}) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair None {}) ] - - location: 14 (just consumed gas: 0) - [ (Pair None {}) ] - - location: 16 (just consumed gas: 0.010) - [ None - {} ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - None - {} ] - - location: 17 (just consumed gas: 0.095) - [ None - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None {}) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None {}) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input156280093-.out deleted file mode 100644 index 943599d9f15a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input156280093-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --level 1 --trace-stack -storage - (Pair (Some 1) { Elt "2" 2 }) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.588) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010) - [ "1" - (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025) - [ "1" - None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.089) - [ (Some 1) - { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input228164856-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input228164856-.out deleted file mode 100644 index d3c1d8266d58..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_and_update_map--storage796012494--input228164856-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_and_update_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"2"' --level 1 --trace-stack -storage - (Pair (Some 2) { Elt "1" 1 }) -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 8.588) - [ (Pair "2" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010) - [ "2" - (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025) - [ "2" - None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.089) - [ (Some 2) - { Elt "1" 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 2) { Elt "1" 1 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 2) { Elt "1" 1 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 2) { Elt "1" 1 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input329240220-.out deleted file mode 100644 index c38b4c7916f5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input329240220-.out +++ /dev/null @@ -1,41 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '"hello"' --level 1 --trace-stack -storage - (Pair (Some "hi") { Elt "hello" "hi" }) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.880) - [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "hello" None { Elt "hello" "hi" }) - (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 14 (just consumed gas: 0) - [ (Pair "hello" None { Elt "hello" "hi" }) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.090) - [ (Some "hi") - { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010) - [ (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Pair (Some "hi") { Elt "hello" "hi" }) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some "hi") { Elt "hello" "hi" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input79230375-.out deleted file mode 100644 index a0eadf2af9ca..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage139236239--input79230375-.out +++ /dev/null @@ -1,41 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "hello" "hi" })' and input '""' --level 1 --trace-stack -storage - (Pair None { Elt "hello" "hi" }) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.830) - [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "" None { Elt "hello" "hi" }) - (Pair "" None { Elt "hello" "hi" }) ] - - location: 13 (just consumed gas: 0.010) - [ "" - (Pair "" None { Elt "hello" "hi" }) ] - - location: 14 (just consumed gas: 0) - [ (Pair "" None { Elt "hello" "hi" }) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" "hi" }) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025) - [ "" - { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.080) - [ None - { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" "hi" }) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Pair None { Elt "hello" "hi" }) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None { Elt "hello" "hi" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage329396864--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage329396864--input156280093-.out deleted file mode 100644 index eca0533c9a94..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -get_map_value--storage329396864--input156280093-.out +++ /dev/null @@ -1,41 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/get_map_value.tz on storage '(Pair None { Elt "1" "one" ; Elt "2" "two" })' and input '"1"' --level 1 --trace-stack -storage - (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 11.189) - [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) - (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 13 (just consumed gas: 0.010) - [ "1" - (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 14 (just consumed gas: 0) - [ (Pair "1" None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair None { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (just consumed gas: 0.025) - [ "1" - { Elt "1" "one" ; Elt "2" "two" } - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (just consumed gas: 0.083) - [ (Some "one") - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (just consumed gas: 0.010) - [ (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Pair (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some "one") { Elt "1" "one" ; Elt "2" "two" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input1040351577-.out deleted file mode 100644 index ddbf07f1a3df..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input1040351577-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack -storage - (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 330.053) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" None) ] - - location: 8 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 9 (just consumed gas: 0.605) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input153350004-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input153350004-.out deleted file mode 100644 index 63c2568dc832..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_key--storage921624073--input153350004-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_key.tz on storage None and input '"edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES"' --level 1 --trace-stack -storage - (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 330.053) - [ (Pair "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" None) ] - - location: 8 (just consumed gas: 0.010) - [ "edpkuJqtDcA2m2muMxViSM47MPsGQzmyjnNTawUPqR8vZTAMcx61ES" ] - - location: 9 (just consumed gas: 0.605) - [ "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k" ] - - location: 10 (just consumed gas: 0.010) - [ (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some "tz1XPTDmvT3vVE5Uunngmixm7gj7zmdbPq6k")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input3431716-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input3431716-.out deleted file mode 100644 index 561e155315e4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input3431716-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"abcdefg"' --level 1 --trace-stack -storage - 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.949) - [ (Pair "abcdefg" 0x00) ] - - location: 7 (just consumed gas: 0.010) - [ "abcdefg" ] - - location: 8 (just consumed gas: 0.286) - [ 0x05010000000761626364656667 ] - - location: 9 (just consumed gas: 0.444) - [ 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0x46fdbcb4ea4eadad5615cdaa17d67f783e01e21149ce2b27de497600b4cd8f4e) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input535018041-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input535018041-.out deleted file mode 100644 index 286e165a101f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -hash_string--storage151303925--input535018041-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/hash_string.tz on storage 0x00 and input '"12345"' --level 1 --trace-stack -storage - 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.929) - [ (Pair "12345" 0x00) ] - - location: 7 (just consumed gas: 0.010) - [ "12345" ] - - location: 8 (just consumed gas: 0.266) - [ 0x0501000000053132333435 ] - - location: 9 (just consumed gas: 0.442) - [ 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0xb4c26c20de52a4eaf0d8a340db47ad8cb1e74049570859c9a9a3952b204c772f) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input570553153-.out deleted file mode 100644 index 74cbb48f8011..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input570553153-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input False --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.320) - [ (Pair False None) ] - - location: 8 (just consumed gas: 0.010) - [ False ] - - location: 9 (just consumed gas: 0) - [ ] - - location: 15 (just consumed gas: 0.010) - [ False ] - - location: 9 (just consumed gas: 0.015) - [ False ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input954397288-.out deleted file mode 100644 index cbc5ff788a32..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if--storage921624073--input954397288-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if.tz on storage None and input True --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.320) - [ (Pair True None) ] - - location: 8 (just consumed gas: 0.010) - [ True ] - - location: 9 (just consumed gas: 0) - [ ] - - location: 11 (just consumed gas: 0.010) - [ True ] - - location: 9 (just consumed gas: 0.015) - [ True ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input288201633-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input288201633-.out deleted file mode 100644 index bc5dd49fa5e6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input288201633-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input '(Some "hello")' --level 1 --trace-stack -storage - "hello" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.419) - [ (Pair (Some "hello") "?") ] - - location: 8 (just consumed gas: 0.010) - [ (Some "hello") ] - - location: 10 (just consumed gas: 0) - [ "hello" ] - - location: 10 (just consumed gas: 0.015) - [ "hello" ] - - location: 16 (just consumed gas: 0.010) - [ {} - "hello" ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} "hello") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input921624073-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input921624073-.out deleted file mode 100644 index 2ed6bfdb027f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -if_some--storage398998998--input921624073-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/if_some.tz on storage '"?"' and input None --level 1 --trace-stack -storage - "" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.255) - [ (Pair None "?") ] - - location: 8 (just consumed gas: 0.010) - [ None ] - - location: 10 (just consumed gas: 0) - [ ] - - location: 12 (just consumed gas: 0.010) - [ "" ] - - location: 10 (just consumed gas: 0.015) - [ "" ] - - location: 16 (just consumed gas: 0.010) - [ {} - "" ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} "") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input453441034-.out deleted file mode 100644 index 30a741922d4b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input453441034-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 1 --level 1 --trace-stack -storage - (Some 1) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair 1 None) ] - - location: 8 (just consumed gas: 0.010) - [ 1 ] - - location: 9 (just consumed gas: 0.010) - [ 1 ] - - location: 10 (just consumed gas: 0.010) - [ (Some 1) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some 1) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some 1)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input535454136-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input535454136-.out deleted file mode 100644 index 4e371de47a57..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input535454136-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 9999 --level 1 --trace-stack -storage - (Some 9999) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair 9999 None) ] - - location: 8 (just consumed gas: 0.010) - [ 9999 ] - - location: 9 (just consumed gas: 0.010) - [ 9999 ] - - location: 10 (just consumed gas: 0.010) - [ (Some 9999) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some 9999) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some 9999)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input680650890-.out deleted file mode 100644 index e7fea675acbd..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -int--storage921624073--input680650890-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/int.tz on storage None and input 0 --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair 0 None) ] - - location: 8 (just consumed gas: 0.010) - [ 0 ] - - location: 9 (just consumed gas: 0.010) - [ 0 ] - - location: 10 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -keccak--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -keccak--storage921624073--input1008262038-.out deleted file mode 100644 index c79c7feec572..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -keccak--storage921624073--input1008262038-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/keccak.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack -storage - (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (just consumed gas: 0.010) - [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (just consumed gas: 1.457) - [ 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4 ] - - location: 10 (just consumed gas: 0.010) - [ (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} - (Some 0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input202098045-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input202098045-.out deleted file mode 100644 index 37b35029196a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input202098045-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Left True)' --level 1 --trace-stack -storage - (Right True) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 7.244) - [ (Pair (Left True) (Left "X")) ] - - location: 11 (just consumed gas: 0.010) - [ (Left True) ] - - location: 12 (just consumed gas: 0) - [ True ] - - location: 14 (just consumed gas: 0.010) - [ (Right True) ] - - location: 12 (just consumed gas: 0.015) - [ (Right True) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Right True) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Right True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input44576556-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input44576556-.out deleted file mode 100644 index 5c7d3fe2f9b0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -left_right--storage4177631--input44576556-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/left_right.tz on storage '(Left "X")' and input '(Right "a")' --level 1 --trace-stack -storage - (Left "a") -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 7.268) - [ (Pair (Right "a") (Left "X")) ] - - location: 11 (just consumed gas: 0.010) - [ (Right "a") ] - - location: 12 (just consumed gas: 0) - [ "a" ] - - location: 17 (just consumed gas: 0.010) - [ (Left "a") ] - - location: 12 (just consumed gas: 0.015) - [ (Left "a") ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Left "a") ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Left "a")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -level--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -level--storage492856247--input125992234-.out deleted file mode 100644 index 5e7d60cf5cdf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -level--storage492856247--input125992234-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/level.tz on storage 111 and input Unit --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 111) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 1 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input457300675-.out deleted file mode 100644 index c62585eaf395..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{}' --level 1 --trace-stack -storage - "abc" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.605) - [ (Pair {} "abc") ] - - location: 8 (just consumed gas: 0.010) - [ {} - "abc" ] - - location: 9 (just consumed gas: 0.010) - [ "abc" - {} ] - - location: 10 (just consumed gas: 0.010) - [ { "abc" } ] - - location: 11 (just consumed gas: 0.111) - [ "abc" ] - - location: 12 (just consumed gas: 0.010) - [ {} - "abc" ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} "abc") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input546523343-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input546523343-.out deleted file mode 100644 index 5afe4ece0769..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat--storage717096222--input546523343-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat.tz on storage '"abc"' and input '{ "d" ; "e" ; "f" }' --level 1 --trace-stack -storage - "abcdef" -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.977) - [ (Pair { "d" ; "e" ; "f" } "abc") ] - - location: 8 (just consumed gas: 0.010) - [ { "d" ; "e" ; "f" } - "abc" ] - - location: 9 (just consumed gas: 0.010) - [ "abc" - { "d" ; "e" ; "f" } ] - - location: 10 (just consumed gas: 0.010) - [ { "abc" ; "d" ; "e" ; "f" } ] - - location: 11 (just consumed gas: 0.143) - [ "abcdef" ] - - location: 12 (just consumed gas: 0.010) - [ {} - "abcdef" ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} "abcdef") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input220724351-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input220724351-.out deleted file mode 100644 index a58a662c95c5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input220724351-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{ 0x00 ; 0x11 ; 0x00 }' --level 1 --trace-stack -storage - 0x001100 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.861) - [ (Pair { 0x00 ; 0x11 ; 0x00 } 0x) ] - - location: 8 (just consumed gas: 0.010) - [ { 0x00 ; 0x11 ; 0x00 } - 0x ] - - location: 9 (just consumed gas: 0.010) - [ 0x - { 0x00 ; 0x11 ; 0x00 } ] - - location: 10 (just consumed gas: 0.010) - [ { 0x ; 0x00 ; 0x11 ; 0x00 } ] - - location: 11 (just consumed gas: 0.141) - [ 0x001100 ] - - location: 12 (just consumed gas: 0.010) - [ {} - 0x001100 ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} 0x001100) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input457300675-.out deleted file mode 100644 index c9906b3cff1b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage149262694--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x and input '{}' --level 1 --trace-stack -storage - 0x -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.561) - [ (Pair {} 0x) ] - - location: 8 (just consumed gas: 0.010) - [ {} - 0x ] - - location: 9 (just consumed gas: 0.010) - [ 0x - {} ] - - location: 10 (just consumed gas: 0.010) - [ { 0x } ] - - location: 11 (just consumed gas: 0.110) - [ 0x ] - - location: 12 (just consumed gas: 0.010) - [ {} - 0x ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} 0x) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage65410082--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage65410082--input457300675-.out deleted file mode 100644 index 122bb336d92b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage65410082--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0xabcd and input '{}' --level 1 --trace-stack -storage - 0xabcd -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.561) - [ (Pair {} 0xabcd) ] - - location: 8 (just consumed gas: 0.010) - [ {} - 0xabcd ] - - location: 9 (just consumed gas: 0.010) - [ 0xabcd - {} ] - - location: 10 (just consumed gas: 0.010) - [ { 0xabcd } ] - - location: 11 (just consumed gas: 0.111) - [ 0xabcd ] - - location: 12 (just consumed gas: 0.010) - [ {} - 0xabcd ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} 0xabcd) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage726220441--input972761363-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage726220441--input972761363-.out deleted file mode 100644 index 0fd797fb4536..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_concat_bytes--storage726220441--input972761363-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_concat_bytes.tz on storage 0x00ab and input '{ 0xcd ; 0xef ; 0x00 }' --level 1 --trace-stack -storage - 0x00abcdef00 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.861) - [ (Pair { 0xcd ; 0xef ; 0x00 } 0x00ab) ] - - location: 8 (just consumed gas: 0.010) - [ { 0xcd ; 0xef ; 0x00 } - 0x00ab ] - - location: 9 (just consumed gas: 0.010) - [ 0x00ab - { 0xcd ; 0xef ; 0x00 } ] - - location: 10 (just consumed gas: 0.010) - [ { 0x00ab ; 0xcd ; 0xef ; 0x00 } ] - - location: 11 (just consumed gas: 0.142) - [ 0x00abcdef00 ] - - location: 12 (just consumed gas: 0.010) - [ {} - 0x00abcdef00 ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} 0x00abcdef00) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input264787654-.out deleted file mode 100644 index d9fb8695934f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input264787654-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.561) - [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input457300675-.out deleted file mode 100644 index 01130ad365ae..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input457300675-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.189) - [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - {} ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input656499821-.out deleted file mode 100644 index ed2c4518dba4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id--storage528921618--input656499821-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack -storage - { "1" ; "2" ; "3" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.561) - [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "1" ; "2" ; "3" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "1" ; "2" ; "3" } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { "1" ; "2" ; "3" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input264787654-.out deleted file mode 100644 index fd8ee12fbd40..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input264787654-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.447) - [ (Pair { "a" ; "b" ; "c" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0) - [ "a" ] - - location: 10 (just consumed gas: 0.015) - [ "b" ] - - location: 10 (just consumed gas: 0.015) - [ "c" ] - - location: 10 (just consumed gas: 0.015) - [ { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input457300675-.out deleted file mode 100644 index 3932dcc164db..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.075) - [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0) - [ {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - {} ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input656499821-.out deleted file mode 100644 index 0a4bd6960280..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_id_map--storage528921618--input656499821-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_id_map.tz on storage '{""}' and input '{ "1" ; "2" ; "3" }' --level 1 --trace-stack -storage - { "1" ; "2" ; "3" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.447) - [ (Pair { "1" ; "2" ; "3" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "1" ; "2" ; "3" } ] - - location: 10 (just consumed gas: 0) - [ "1" ] - - location: 10 (just consumed gas: 0.015) - [ "2" ] - - location: 10 (just consumed gas: 0.015) - [ "3" ] - - location: 10 (just consumed gas: 0.015) - [ { "1" ; "2" ; "3" } ] - - location: 12 (just consumed gas: 0.010) - [ {} - { "1" ; "2" ; "3" } ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} { "1" ; "2" ; "3" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input568817463-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input568817463-.out deleted file mode 100644 index d36f914fbdb4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input568817463-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 10 ; 2 ; 1 }' --level 1 --trace-stack -storage - 20 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.002) - [ (Pair { 10 ; 2 ; 1 } 0) ] - - location: 8 (just consumed gas: 0.010) - [ { 10 ; 2 ; 1 } ] - - location: 9 (just consumed gas: 0.010) - [ 1 - { 10 ; 2 ; 1 } ] - - location: 12 (just consumed gas: 0.010) - [ { 10 ; 2 ; 1 } - 1 ] - - location: 13 (just consumed gas: 0) - [ 10 - 1 ] - - location: 15 (just consumed gas: 0.059) - [ 10 ] - - location: 13 (just consumed gas: 0.015) - [ 2 - 10 ] - - location: 15 (just consumed gas: 0.059) - [ 20 ] - - location: 13 (just consumed gas: 0.015) - [ 1 - 20 ] - - location: 15 (just consumed gas: 0.059) - [ 20 ] - - location: 13 (just consumed gas: 0.015) - [ 20 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 20 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 20) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input737923774-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input737923774-.out deleted file mode 100644 index 937fc28070d2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_iter--storage680650890--input737923774-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_iter.tz on storage 0 and input '{ 3 ; 6 ; 9 }' --level 1 --trace-stack -storage - 162 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.002) - [ (Pair { 3 ; 6 ; 9 } 0) ] - - location: 8 (just consumed gas: 0.010) - [ { 3 ; 6 ; 9 } ] - - location: 9 (just consumed gas: 0.010) - [ 1 - { 3 ; 6 ; 9 } ] - - location: 12 (just consumed gas: 0.010) - [ { 3 ; 6 ; 9 } - 1 ] - - location: 13 (just consumed gas: 0) - [ 3 - 1 ] - - location: 15 (just consumed gas: 0.059) - [ 3 ] - - location: 13 (just consumed gas: 0.015) - [ 6 - 3 ] - - location: 15 (just consumed gas: 0.059) - [ 18 ] - - location: 13 (just consumed gas: 0.015) - [ 9 - 18 ] - - location: 15 (just consumed gas: 0.059) - [ 162 ] - - location: 13 (just consumed gas: 0.015) - [ 162 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 162 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 162) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input457300675-.out deleted file mode 100644 index 833de3477ec5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input457300675-.out +++ /dev/null @@ -1,36 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 11.941) - [ (Pair {} { 0 }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ 0 - {} ] - - location: 13 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 14 (just consumed gas: 0) - [ {} - 0 ] - - location: 26 (just consumed gas: 0.010) - [ {} - {} - 0 ] - - location: 28 (just consumed gas: 0.010) - [ (Pair {} {}) - 0 ] - - location: 29 (just consumed gas: 0) - [ 0 ] - - location: 31 (just consumed gas: 0.010) - [ ] - - location: 29 (just consumed gas: 0.025) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input648737279-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input648737279-.out deleted file mode 100644 index 2cb58c5805e6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input648737279-.out +++ /dev/null @@ -1,136 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 2 ; 3 ; 0 }' --level 1 --trace-stack -storage - { 1 ; 3 ; 5 ; 3 } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 12.341) - [ (Pair { 1 ; 2 ; 3 ; 0 } { 0 }) ] - - location: 9 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 ; 0 } ] - - location: 10 (just consumed gas: 0.010) - [ 0 - { 1 ; 2 ; 3 ; 0 } ] - - location: 13 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 ; 0 } - 0 ] - - location: 14 (just consumed gas: 0) - [ 1 - 0 ] - - location: 16 (just consumed gas: 0) - [ 0 ] - - location: 18 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 16 (just consumed gas: 0.025) - [ 1 - 0 - 0 ] - - location: 19 (just consumed gas: 0.035) - [ 1 - 0 ] - - location: 20 (just consumed gas: 0) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 0 ] - - location: 25 (just consumed gas: 0.035) - [ 1 ] - - location: 20 (just consumed gas: 0.025) - [ 1 - 1 ] - - location: 14 (just consumed gas: 0.015) - [ 2 - 1 ] - - location: 16 (just consumed gas: 0) - [ 1 ] - - location: 18 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 16 (just consumed gas: 0.025) - [ 2 - 1 - 1 ] - - location: 19 (just consumed gas: 0.035) - [ 3 - 1 ] - - location: 20 (just consumed gas: 0) - [ 1 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 25 (just consumed gas: 0.035) - [ 2 ] - - location: 20 (just consumed gas: 0.025) - [ 3 - 2 ] - - location: 14 (just consumed gas: 0.015) - [ 3 - 2 ] - - location: 16 (just consumed gas: 0) - [ 2 ] - - location: 18 (just consumed gas: 0.010) - [ 2 - 2 ] - - location: 16 (just consumed gas: 0.025) - [ 3 - 2 - 2 ] - - location: 19 (just consumed gas: 0.035) - [ 5 - 2 ] - - location: 20 (just consumed gas: 0) - [ 2 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 2 ] - - location: 25 (just consumed gas: 0.035) - [ 3 ] - - location: 20 (just consumed gas: 0.025) - [ 5 - 3 ] - - location: 14 (just consumed gas: 0.015) - [ 0 - 3 ] - - location: 16 (just consumed gas: 0) - [ 3 ] - - location: 18 (just consumed gas: 0.010) - [ 3 - 3 ] - - location: 16 (just consumed gas: 0.025) - [ 0 - 3 - 3 ] - - location: 19 (just consumed gas: 0.035) - [ 3 - 3 ] - - location: 20 (just consumed gas: 0) - [ 3 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 3 ] - - location: 25 (just consumed gas: 0.035) - [ 4 ] - - location: 20 (just consumed gas: 0.025) - [ 3 - 4 ] - - location: 14 (just consumed gas: 0.015) - [ { 1 ; 3 ; 5 ; 3 } - 4 ] - - location: 26 (just consumed gas: 0.010) - [ {} - { 1 ; 3 ; 5 ; 3 } - 4 ] - - location: 28 (just consumed gas: 0.010) - [ (Pair {} { 1 ; 3 ; 5 ; 3 }) - 4 ] - - location: 29 (just consumed gas: 0) - [ 4 ] - - location: 31 (just consumed gas: 0.010) - [ ] - - location: 29 (just consumed gas: 0.025) - [ (Pair {} { 1 ; 3 ; 5 ; 3 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input908379154-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input908379154-.out deleted file mode 100644 index e6a8e99b43bb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_map_block--storage907453363--input908379154-.out +++ /dev/null @@ -1,136 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_map_block.tz on storage '{0}' and input '{ 1 ; 1 ; 1 ; 1 }' --level 1 --trace-stack -storage - { 1 ; 2 ; 3 ; 4 } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 12.341) - [ (Pair { 1 ; 1 ; 1 ; 1 } { 0 }) ] - - location: 9 (just consumed gas: 0.010) - [ { 1 ; 1 ; 1 ; 1 } ] - - location: 10 (just consumed gas: 0.010) - [ 0 - { 1 ; 1 ; 1 ; 1 } ] - - location: 13 (just consumed gas: 0.010) - [ { 1 ; 1 ; 1 ; 1 } - 0 ] - - location: 14 (just consumed gas: 0) - [ 1 - 0 ] - - location: 16 (just consumed gas: 0) - [ 0 ] - - location: 18 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 16 (just consumed gas: 0.025) - [ 1 - 0 - 0 ] - - location: 19 (just consumed gas: 0.035) - [ 1 - 0 ] - - location: 20 (just consumed gas: 0) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 0 ] - - location: 25 (just consumed gas: 0.035) - [ 1 ] - - location: 20 (just consumed gas: 0.025) - [ 1 - 1 ] - - location: 14 (just consumed gas: 0.015) - [ 1 - 1 ] - - location: 16 (just consumed gas: 0) - [ 1 ] - - location: 18 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 16 (just consumed gas: 0.025) - [ 1 - 1 - 1 ] - - location: 19 (just consumed gas: 0.035) - [ 2 - 1 ] - - location: 20 (just consumed gas: 0) - [ 1 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 25 (just consumed gas: 0.035) - [ 2 ] - - location: 20 (just consumed gas: 0.025) - [ 2 - 2 ] - - location: 14 (just consumed gas: 0.015) - [ 1 - 2 ] - - location: 16 (just consumed gas: 0) - [ 2 ] - - location: 18 (just consumed gas: 0.010) - [ 2 - 2 ] - - location: 16 (just consumed gas: 0.025) - [ 1 - 2 - 2 ] - - location: 19 (just consumed gas: 0.035) - [ 3 - 2 ] - - location: 20 (just consumed gas: 0) - [ 2 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 2 ] - - location: 25 (just consumed gas: 0.035) - [ 3 ] - - location: 20 (just consumed gas: 0.025) - [ 3 - 3 ] - - location: 14 (just consumed gas: 0.015) - [ 1 - 3 ] - - location: 16 (just consumed gas: 0) - [ 3 ] - - location: 18 (just consumed gas: 0.010) - [ 3 - 3 ] - - location: 16 (just consumed gas: 0.025) - [ 1 - 3 - 3 ] - - location: 19 (just consumed gas: 0.035) - [ 4 - 3 ] - - location: 20 (just consumed gas: 0) - [ 3 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 3 ] - - location: 25 (just consumed gas: 0.035) - [ 4 ] - - location: 20 (just consumed gas: 0.025) - [ 4 - 4 ] - - location: 14 (just consumed gas: 0.015) - [ { 1 ; 2 ; 3 ; 4 } - 4 ] - - location: 26 (just consumed gas: 0.010) - [ {} - { 1 ; 2 ; 3 ; 4 } - 4 ] - - location: 28 (just consumed gas: 0.010) - [ (Pair {} { 1 ; 2 ; 3 ; 4 }) - 4 ] - - location: 29 (just consumed gas: 0) - [ 4 ] - - location: 31 (just consumed gas: 0.010) - [ ] - - location: 29 (just consumed gas: 0.025) - [ (Pair {} { 1 ; 2 ; 3 ; 4 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input403499055-.out deleted file mode 100644 index d07f97e194c7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input403499055-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack -storage - 6 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.995) - [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (just consumed gas: 0.010) - [ 6 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 6 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 6) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input457300675-.out deleted file mode 100644 index 8729b4ed028a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{}' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.395) - [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010) - [ {} ] - - location: 9 (just consumed gas: 0.010) - [ 0 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input469078912-.out deleted file mode 100644 index d9028f8f22f6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input469078912-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack -storage - 3 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.695) - [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010) - [ 3 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 3 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 3) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input802622031-.out deleted file mode 100644 index 657f8ef64c46..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -list_size--storage492856247--input802622031-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/list_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.495) - [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 } ] - - location: 9 (just consumed gas: 0.010) - [ 1 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input457300675-.out deleted file mode 100644 index 03f8c0300a4b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input457300675-.out +++ /dev/null @@ -1,52 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 17.263) - [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} {}) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair {} {})) ] - - location: 41 (just consumed gas: 0) - [ (Pair {} {}) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} {}) - (Pair {} {}) ] - - location: 20 (just consumed gas: 0.010) - [ {} - (Pair {} {}) ] - - location: 21 (just consumed gas: 0) - [ (Pair {} {}) ] - - location: 23 (just consumed gas: 0.010) - [ {} ] - - location: 21 (just consumed gas: 0.025) - [ {} - {} ] - - location: 24 (just consumed gas: 0) - [ {} ] - - location: 35 (just consumed gas: 0.010) - [ (Right {}) ] - - location: 24 (just consumed gas: 0.015) - [ (Right {}) ] - - location: 41 (just consumed gas: 0.015) - [ {} ] - - location: 41 (just consumed gas: 0.010) - [ {} - {} ] - - location: 43 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input851203613-.out deleted file mode 100644 index 4225811f0798..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -loop_left--storage528921618--input851203613-.out +++ /dev/null @@ -1,163 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/loop_left.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 17.635) - [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } - {} ] - - location: 13 (just consumed gas: 0.010) - [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair { "c" ; "b" ; "a" } {})) ] - - location: 41 (just consumed gas: 0) - [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair { "c" ; "b" ; "a" } {}) - (Pair { "c" ; "b" ; "a" } {}) ] - - location: 20 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } - (Pair { "c" ; "b" ; "a" } {}) ] - - location: 21 (just consumed gas: 0) - [ (Pair { "c" ; "b" ; "a" } {}) ] - - location: 23 (just consumed gas: 0.010) - [ {} ] - - location: 21 (just consumed gas: 0.025) - [ { "c" ; "b" ; "a" } - {} ] - - location: 24 (just consumed gas: 0) - [ "c" - { "b" ; "a" } - {} ] - - location: 26 (just consumed gas: 0.010) - [ { "b" ; "a" } - "c" - {} ] - - location: 27 (just consumed gas: 0) - [ "c" - {} ] - - location: 29 (just consumed gas: 0.010) - [ { "c" } ] - - location: 27 (just consumed gas: 0.025) - [ { "b" ; "a" } - { "c" } ] - - location: 30 (just consumed gas: 0.010) - [ (Pair { "b" ; "a" } { "c" }) ] - - location: 31 (just consumed gas: 0.010) - [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 24 (just consumed gas: 0.015) - [ (Left (Pair { "b" ; "a" } { "c" })) ] - - location: 41 (just consumed gas: 0.015) - [ (Pair { "b" ; "a" } { "c" }) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair { "b" ; "a" } { "c" }) - (Pair { "b" ; "a" } { "c" }) ] - - location: 20 (just consumed gas: 0.010) - [ { "b" ; "a" } - (Pair { "b" ; "a" } { "c" }) ] - - location: 21 (just consumed gas: 0) - [ (Pair { "b" ; "a" } { "c" }) ] - - location: 23 (just consumed gas: 0.010) - [ { "c" } ] - - location: 21 (just consumed gas: 0.025) - [ { "b" ; "a" } - { "c" } ] - - location: 24 (just consumed gas: 0) - [ "b" - { "a" } - { "c" } ] - - location: 26 (just consumed gas: 0.010) - [ { "a" } - "b" - { "c" } ] - - location: 27 (just consumed gas: 0) - [ "b" - { "c" } ] - - location: 29 (just consumed gas: 0.010) - [ { "b" ; "c" } ] - - location: 27 (just consumed gas: 0.025) - [ { "a" } - { "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010) - [ (Pair { "a" } { "b" ; "c" }) ] - - location: 31 (just consumed gas: 0.010) - [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 24 (just consumed gas: 0.015) - [ (Left (Pair { "a" } { "b" ; "c" })) ] - - location: 41 (just consumed gas: 0.015) - [ (Pair { "a" } { "b" ; "c" }) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair { "a" } { "b" ; "c" }) - (Pair { "a" } { "b" ; "c" }) ] - - location: 20 (just consumed gas: 0.010) - [ { "a" } - (Pair { "a" } { "b" ; "c" }) ] - - location: 21 (just consumed gas: 0) - [ (Pair { "a" } { "b" ; "c" }) ] - - location: 23 (just consumed gas: 0.010) - [ { "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025) - [ { "a" } - { "b" ; "c" } ] - - location: 24 (just consumed gas: 0) - [ "a" - {} - { "b" ; "c" } ] - - location: 26 (just consumed gas: 0.010) - [ {} - "a" - { "b" ; "c" } ] - - location: 27 (just consumed gas: 0) - [ "a" - { "b" ; "c" } ] - - location: 29 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 27 (just consumed gas: 0.025) - [ {} - { "a" ; "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 31 (just consumed gas: 0.010) - [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 24 (just consumed gas: 0.015) - [ (Left (Pair {} { "a" ; "b" ; "c" })) ] - - location: 41 (just consumed gas: 0.015) - [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) - (Pair {} { "a" ; "b" ; "c" }) ] - - location: 20 (just consumed gas: 0.010) - [ {} - (Pair {} { "a" ; "b" ; "c" }) ] - - location: 21 (just consumed gas: 0) - [ (Pair {} { "a" ; "b" ; "c" }) ] - - location: 23 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025) - [ {} - { "a" ; "b" ; "c" } ] - - location: 24 (just consumed gas: 0) - [ { "a" ; "b" ; "c" } ] - - location: 35 (just consumed gas: 0.010) - [ (Right { "a" ; "b" ; "c" }) ] - - location: 24 (just consumed gas: 0.015) - [ (Right { "a" ; "b" ; "c" }) ] - - location: 41 (just consumed gas: 0.015) - [ { "a" ; "b" ; "c" } ] - - location: 41 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 43 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsl_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsl_bytes--storage125992234--input125992234-.out deleted file mode 100644 index 47ab39ee7fc8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsl_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,93 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsl_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 36.249) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0 ] - - location: 11 (just consumed gas: 0.010) - [ 0x06 - 0 ] - - location: 14 (just consumed gas: 0.065) - [ 0x06 ] - - location: 15 (just consumed gas: 0.010) - [ 0x06 - 0x06 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 1 ] - - location: 31 (just consumed gas: 0.010) - [ 0x06 - 1 ] - - location: 34 (just consumed gas: 0.065) - [ 0x000c ] - - location: 35 (just consumed gas: 0.010) - [ 0x000c - 0x000c ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 8 ] - - location: 51 (just consumed gas: 0.010) - [ 0x06 - 8 ] - - location: 54 (just consumed gas: 0.065) - [ 0x0600 ] - - location: 55 (just consumed gas: 0.010) - [ 0x0600 - 0x0600 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ 1 ] - - location: 71 (just consumed gas: 0.010) - [ 0x0006 - 1 ] - - location: 74 (just consumed gas: 0.066) - [ 0x00000c ] - - location: 75 (just consumed gas: 0.010) - [ 0x00000c - 0x00000c ] - - location: 80 (just consumed gas: 0.035) - [ 0 ] - - location: 81 (just consumed gas: 0.010) - [ True ] - - location: 82 (just consumed gas: 0) - [ ] - - location: 82 (just consumed gas: 0.015) - [ ] - - location: 88 (just consumed gas: 0.010) - [ Unit ] - - location: 89 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 91 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsr_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsr_bytes--storage125992234--input125992234-.out deleted file mode 100644 index 43eb8f024ddb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -lsr_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,129 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/lsr_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 52.699) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 1 ] - - location: 11 (just consumed gas: 0.010) - [ 0x06 - 1 ] - - location: 14 (just consumed gas: 0.055) - [ 0x03 ] - - location: 15 (just consumed gas: 0.010) - [ 0x03 - 0x03 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 8 ] - - location: 31 (just consumed gas: 0.010) - [ 0x06 - 8 ] - - location: 34 (just consumed gas: 0.055) - [ 0x ] - - location: 35 (just consumed gas: 0.010) - [ 0x - 0x ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 1 ] - - location: 51 (just consumed gas: 0.010) - [ 0x0006 - 1 ] - - location: 54 (just consumed gas: 0.056) - [ 0x0003 ] - - location: 55 (just consumed gas: 0.010) - [ 0x0003 - 0x0003 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ 8 ] - - location: 71 (just consumed gas: 0.010) - [ 0x0006 - 8 ] - - location: 74 (just consumed gas: 0.055) - [ 0x00 ] - - location: 75 (just consumed gas: 0.010) - [ 0x00 - 0x00 ] - - location: 80 (just consumed gas: 0.035) - [ 0 ] - - location: 81 (just consumed gas: 0.010) - [ True ] - - location: 82 (just consumed gas: 0) - [ ] - - location: 82 (just consumed gas: 0.015) - [ ] - - location: 88 (just consumed gas: 0.010) - [ 0 ] - - location: 91 (just consumed gas: 0.010) - [ 0x001234 - 0 ] - - location: 94 (just consumed gas: 0.056) - [ 0x001234 ] - - location: 95 (just consumed gas: 0.010) - [ 0x001234 - 0x001234 ] - - location: 100 (just consumed gas: 0.035) - [ 0 ] - - location: 101 (just consumed gas: 0.010) - [ True ] - - location: 102 (just consumed gas: 0) - [ ] - - location: 102 (just consumed gas: 0.015) - [ ] - - location: 108 (just consumed gas: 0.010) - [ 30 ] - - location: 111 (just consumed gas: 0.010) - [ 0x001234 - 30 ] - - location: 114 (just consumed gas: 0.055) - [ 0x ] - - location: 115 (just consumed gas: 0.010) - [ 0x - 0x ] - - location: 120 (just consumed gas: 0.035) - [ 0 ] - - location: 121 (just consumed gas: 0.010) - [ True ] - - location: 122 (just consumed gas: 0) - [ ] - - location: 122 (just consumed gas: 0.015) - [ ] - - location: 128 (just consumed gas: 0.010) - [ Unit ] - - location: 129 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 131 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input1027566226-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input1027566226-.out deleted file mode 100644 index 92ba07610731..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input1027566226-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 }' --level 1 --trace-stack -storage - { Elt 0 0 } -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 4.716) - [ (Pair { Elt 0 0 } {}) ] - - location: 11 (just consumed gas: 0.010) - [ { Elt 0 0 } ] - - location: 12 (just consumed gas: 0.010) - [ {} - { Elt 0 0 } ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 0 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input276660554-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input276660554-.out deleted file mode 100644 index 629edb22b463..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input276660554-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 0 ; Elt 3 4 }' --level 1 --trace-stack -storage - { Elt 0 0 ; Elt 3 4 } -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 5.031) - [ (Pair { Elt 0 0 ; Elt 3 4 } {}) ] - - location: 11 (just consumed gas: 0.010) - [ { Elt 0 0 ; Elt 3 4 } ] - - location: 12 (just consumed gas: 0.010) - [ {} - { Elt 0 0 ; Elt 3 4 } ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 0 ; Elt 3 4 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input599923743-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input599923743-.out deleted file mode 100644 index ace26cfd4647..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_id--storage457300675--input599923743-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_id.tz on storage '{}' and input '{ Elt 0 1 }' --level 1 --trace-stack -storage - { Elt 0 1 } -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 4.716) - [ (Pair { Elt 0 1 } {}) ] - - location: 11 (just consumed gas: 0.010) - [ { Elt 0 1 } ] - - location: 12 (just consumed gas: 0.010) - [ {} - { Elt 0 1 } ] - - location: 14 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 1 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input403579222-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input403579222-.out deleted file mode 100644 index 70157b6c0f6e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input403579222-.out +++ /dev/null @@ -1,152 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 1 1 ; Elt 2 100 }' --level 1 --trace-stack -storage - (Pair 3 101) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 18.616) - [ (Pair { Elt 1 1 ; Elt 2 100 } 0 0) ] - - location: 11 (just consumed gas: 0.010) - [ { Elt 1 1 ; Elt 2 100 } ] - - location: 12 (just consumed gas: 0.010) - [ 0 - { Elt 1 1 ; Elt 2 100 } ] - - location: 15 (just consumed gas: 0.010) - [ 0 - 0 - { Elt 1 1 ; Elt 2 100 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 0 0) - { Elt 1 1 ; Elt 2 100 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 1 ; Elt 2 100 } - (Pair 0 0) ] - - location: 20 (just consumed gas: 0) - [ (Pair 1 1) - (Pair 0 0) ] - - location: 22 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 0 0) - (Pair 0 0) ] - - location: 25 (just consumed gas: 0.010) - [ 0 - (Pair 0 0) ] - - location: 26 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 28 (just consumed gas: 0.010) - [ 0 ] - - location: 26 (just consumed gas: 0.025) - [ 0 - 0 ] - - location: 22 (just consumed gas: 0.025) - [ (Pair 1 1) - 0 - 0 ] - - location: 29 (just consumed gas: 0.010) - [ (Pair 1 1) - (Pair 1 1) - 0 - 0 ] - - location: 30 (just consumed gas: 0) - [ (Pair 1 1) - 0 - 0 ] - - location: 32 (just consumed gas: 0.010) - [ 1 - 0 - 0 ] - - location: 33 (just consumed gas: 0.035) - [ 1 - 0 ] - - location: 30 (just consumed gas: 0.025) - [ (Pair 1 1) - 1 - 0 ] - - location: 34 (just consumed gas: 0.010) - [ 1 - (Pair 1 1) - 0 ] - - location: 35 (just consumed gas: 0) - [ (Pair 1 1) - 0 ] - - location: 37 (just consumed gas: 0.010) - [ 1 - 0 ] - - location: 38 (just consumed gas: 0.035) - [ 1 ] - - location: 35 (just consumed gas: 0.025) - [ 1 - 1 ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 1 1) ] - - location: 20 (just consumed gas: 0.015) - [ (Pair 2 100) - (Pair 1 1) ] - - location: 22 (just consumed gas: 0) - [ (Pair 1 1) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 1 1) - (Pair 1 1) ] - - location: 25 (just consumed gas: 0.010) - [ 1 - (Pair 1 1) ] - - location: 26 (just consumed gas: 0) - [ (Pair 1 1) ] - - location: 28 (just consumed gas: 0.010) - [ 1 ] - - location: 26 (just consumed gas: 0.025) - [ 1 - 1 ] - - location: 22 (just consumed gas: 0.025) - [ (Pair 2 100) - 1 - 1 ] - - location: 29 (just consumed gas: 0.010) - [ (Pair 2 100) - (Pair 2 100) - 1 - 1 ] - - location: 30 (just consumed gas: 0) - [ (Pair 2 100) - 1 - 1 ] - - location: 32 (just consumed gas: 0.010) - [ 2 - 1 - 1 ] - - location: 33 (just consumed gas: 0.035) - [ 3 - 1 ] - - location: 30 (just consumed gas: 0.025) - [ (Pair 2 100) - 3 - 1 ] - - location: 34 (just consumed gas: 0.010) - [ 3 - (Pair 2 100) - 1 ] - - location: 35 (just consumed gas: 0) - [ (Pair 2 100) - 1 ] - - location: 37 (just consumed gas: 0.010) - [ 100 - 1 ] - - location: 38 (just consumed gas: 0.035) - [ 101 ] - - location: 35 (just consumed gas: 0.025) - [ 3 - 101 ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 3 101) ] - - location: 20 (just consumed gas: 0.015) - [ (Pair 3 101) ] - - location: 40 (just consumed gas: 0.010) - [ {} - (Pair 3 101) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair {} 3 101) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input532072758-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input532072758-.out deleted file mode 100644 index 0b55b54695bb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_iter--storage1011138251--input532072758-.out +++ /dev/null @@ -1,152 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_iter.tz on storage '(Pair 0 0)' and input '{ Elt 0 100 ; Elt 2 100 }' --level 1 --trace-stack -storage - (Pair 2 200) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 18.616) - [ (Pair { Elt 0 100 ; Elt 2 100 } 0 0) ] - - location: 11 (just consumed gas: 0.010) - [ { Elt 0 100 ; Elt 2 100 } ] - - location: 12 (just consumed gas: 0.010) - [ 0 - { Elt 0 100 ; Elt 2 100 } ] - - location: 15 (just consumed gas: 0.010) - [ 0 - 0 - { Elt 0 100 ; Elt 2 100 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair 0 0) - { Elt 0 100 ; Elt 2 100 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 0 100 ; Elt 2 100 } - (Pair 0 0) ] - - location: 20 (just consumed gas: 0) - [ (Pair 0 100) - (Pair 0 0) ] - - location: 22 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 0 0) - (Pair 0 0) ] - - location: 25 (just consumed gas: 0.010) - [ 0 - (Pair 0 0) ] - - location: 26 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 28 (just consumed gas: 0.010) - [ 0 ] - - location: 26 (just consumed gas: 0.025) - [ 0 - 0 ] - - location: 22 (just consumed gas: 0.025) - [ (Pair 0 100) - 0 - 0 ] - - location: 29 (just consumed gas: 0.010) - [ (Pair 0 100) - (Pair 0 100) - 0 - 0 ] - - location: 30 (just consumed gas: 0) - [ (Pair 0 100) - 0 - 0 ] - - location: 32 (just consumed gas: 0.010) - [ 0 - 0 - 0 ] - - location: 33 (just consumed gas: 0.035) - [ 0 - 0 ] - - location: 30 (just consumed gas: 0.025) - [ (Pair 0 100) - 0 - 0 ] - - location: 34 (just consumed gas: 0.010) - [ 0 - (Pair 0 100) - 0 ] - - location: 35 (just consumed gas: 0) - [ (Pair 0 100) - 0 ] - - location: 37 (just consumed gas: 0.010) - [ 100 - 0 ] - - location: 38 (just consumed gas: 0.035) - [ 100 ] - - location: 35 (just consumed gas: 0.025) - [ 0 - 100 ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 0 100) ] - - location: 20 (just consumed gas: 0.015) - [ (Pair 2 100) - (Pair 0 100) ] - - location: 22 (just consumed gas: 0) - [ (Pair 0 100) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair 0 100) - (Pair 0 100) ] - - location: 25 (just consumed gas: 0.010) - [ 0 - (Pair 0 100) ] - - location: 26 (just consumed gas: 0) - [ (Pair 0 100) ] - - location: 28 (just consumed gas: 0.010) - [ 100 ] - - location: 26 (just consumed gas: 0.025) - [ 0 - 100 ] - - location: 22 (just consumed gas: 0.025) - [ (Pair 2 100) - 0 - 100 ] - - location: 29 (just consumed gas: 0.010) - [ (Pair 2 100) - (Pair 2 100) - 0 - 100 ] - - location: 30 (just consumed gas: 0) - [ (Pair 2 100) - 0 - 100 ] - - location: 32 (just consumed gas: 0.010) - [ 2 - 0 - 100 ] - - location: 33 (just consumed gas: 0.035) - [ 2 - 100 ] - - location: 30 (just consumed gas: 0.025) - [ (Pair 2 100) - 2 - 100 ] - - location: 34 (just consumed gas: 0.010) - [ 2 - (Pair 2 100) - 100 ] - - location: 35 (just consumed gas: 0) - [ (Pair 2 100) - 100 ] - - location: 37 (just consumed gas: 0.010) - [ 100 - 100 ] - - location: 38 (just consumed gas: 0.035) - [ 200 ] - - location: 35 (just consumed gas: 0.025) - [ 2 - 200 ] - - location: 39 (just consumed gas: 0.010) - [ (Pair 2 200) ] - - location: 20 (just consumed gas: 0.015) - [ (Pair 2 200) ] - - location: 40 (just consumed gas: 0.010) - [ {} - (Pair 2 200) ] - - location: 42 (just consumed gas: 0.010) - [ (Pair {} 2 200) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage457300675--input798141440-.out deleted file mode 100644 index 461b4dfbfb3d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage457300675--input798141440-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{}' and input 10 --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 9.216) - [ (Pair 10 {}) ] - - location: 9 (just consumed gas: 0.010) - [ 10 - {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - 10 ] - - location: 11 (just consumed gas: 0) - [ {} - 10 ] - - location: 18 (just consumed gas: 0) - [ 10 ] - - location: 20 (just consumed gas: 0.010) - [ ] - - location: 18 (just consumed gas: 0.025) - [ {} ] - - location: 21 (just consumed gas: 0.010) - [ {} - {} ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage794999348--input152441147-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage794999348--input152441147-.out deleted file mode 100644 index 0342193c6f14..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage794999348--input152441147-.out +++ /dev/null @@ -1,68 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "bar" 5 ; Elt "foo" 1 }' and input 15 --level 1 --trace-stack -storage - { Elt "bar" 20 ; Elt "foo" 16 } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 9.917) - [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 }) ] - - location: 9 (just consumed gas: 0.010) - [ 15 - { Elt "bar" 5 ; Elt "foo" 1 } ] - - location: 10 (just consumed gas: 0.010) - [ { Elt "bar" 5 ; Elt "foo" 1 } - 15 ] - - location: 11 (just consumed gas: 0) - [ (Pair "bar" 5) - 15 ] - - location: 13 (just consumed gas: 0.010) - [ 5 - 15 ] - - location: 14 (just consumed gas: 0) - [ 15 ] - - location: 16 (just consumed gas: 0.010) - [ 15 - 15 ] - - location: 14 (just consumed gas: 0.025) - [ 5 - 15 - 15 ] - - location: 17 (just consumed gas: 0.035) - [ 20 - 15 ] - - location: 11 (just consumed gas: 0.015) - [ (Pair "foo" 1) - 15 ] - - location: 13 (just consumed gas: 0.010) - [ 1 - 15 ] - - location: 14 (just consumed gas: 0) - [ 15 ] - - location: 16 (just consumed gas: 0.010) - [ 15 - 15 ] - - location: 14 (just consumed gas: 0.025) - [ 1 - 15 - 15 ] - - location: 17 (just consumed gas: 0.035) - [ 16 - 15 ] - - location: 11 (just consumed gas: 0.015) - [ { Elt "bar" 20 ; Elt "foo" 16 } - 15 ] - - location: 18 (just consumed gas: 0) - [ 15 ] - - location: 20 (just consumed gas: 0.010) - [ ] - - location: 18 (just consumed gas: 0.025) - [ { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 21 (just consumed gas: 0.010) - [ {} - { Elt "bar" 20 ; Elt "foo" 16 } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 20 ; Elt "foo" 16 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage88008216--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage88008216--input798141440-.out deleted file mode 100644 index 62c4a8ec5d5b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_map--storage88008216--input798141440-.out +++ /dev/null @@ -1,50 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_map.tz on storage '{ Elt "foo" 1 }' and input 10 --level 1 --trace-stack -storage - { Elt "foo" 11 } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 9.546) - [ (Pair 10 { Elt "foo" 1 }) ] - - location: 9 (just consumed gas: 0.010) - [ 10 - { Elt "foo" 1 } ] - - location: 10 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - 10 ] - - location: 11 (just consumed gas: 0) - [ (Pair "foo" 1) - 10 ] - - location: 13 (just consumed gas: 0.010) - [ 1 - 10 ] - - location: 14 (just consumed gas: 0) - [ 10 ] - - location: 16 (just consumed gas: 0.010) - [ 10 - 10 ] - - location: 14 (just consumed gas: 0.025) - [ 1 - 10 - 10 ] - - location: 17 (just consumed gas: 0.035) - [ 11 - 10 ] - - location: 11 (just consumed gas: 0.015) - [ { Elt "foo" 11 } - 10 ] - - location: 18 (just consumed gas: 0) - [ 10 ] - - location: 20 (just consumed gas: 0.010) - [ ] - - location: 18 (just consumed gas: 0.025) - [ { Elt "foo" 11 } ] - - location: 21 (just consumed gas: 0.010) - [ {} - { Elt "foo" 11 } ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 11 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage495706788--input453441034-.out deleted file mode 100644 index 2c6e9080dec4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage495706788--input453441034-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair {} None)' and input 1 --level 1 --trace-stack -storage - (Pair {} (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.436) - [ (Pair 1 {} None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair {} None) ] - - location: 13 (just consumed gas: 0) - [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.025) - [ 1 - {} - {} ] - - location: 17 (just consumed gas: 0.080) - [ False - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - {} ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input453441034-.out deleted file mode 100644 index 8fd5bcf1e9fb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input453441034-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 1 --level 1 --trace-stack -storage - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.031) - [ (Pair 1 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.080) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input564400327-.out deleted file mode 100644 index f3d421b8514f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input564400327-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 2 --level 1 --trace-stack -storage - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.031) - [ (Pair 2 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 2 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 2 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.080) - [ True - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input654274102-.out deleted file mode 100644 index 655d140c109c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage56274299--input654274102-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 4 ; Elt 2 11 } None)' and input 3 --level 1 --trace-stack -storage - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.031) - [ (Pair 3 { Elt 1 4 ; Elt 2 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 3 - (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 4 ; Elt 2 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 13 (just consumed gas: 0.025) - [ 3 - { Elt 1 4 ; Elt 2 11 } - { Elt 1 4 ; Elt 2 11 } ] - - location: 17 (just consumed gas: 0.080) - [ False - { Elt 1 4 ; Elt 2 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 1 4 ; Elt 2 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 4 ; Elt 2 11 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 4 ; Elt 2 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 4 ; Elt 2 11 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage690637660--input453441034-.out deleted file mode 100644 index 16734674fc8a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage690637660--input453441034-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 1 0 } None)' and input 1 --level 1 --trace-stack -storage - (Pair { Elt 1 0 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.716) - [ (Pair 1 { Elt 1 0 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 1 0 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 1 0 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 1 0 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 1 0 } - { Elt 1 0 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 1 0 } - { Elt 1 0 } ] - - location: 17 (just consumed gas: 0.080) - [ True - { Elt 1 0 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt 1 0 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 1 0 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 1 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 1 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 1 0 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage806237530--input453441034-.out deleted file mode 100644 index 76ec04bb1f0e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_nat--storage806237530--input453441034-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_nat.tz on storage '(Pair { Elt 0 1 } None)' and input 1 --level 1 --trace-stack -storage - (Pair { Elt 0 1 } (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.716) - [ (Pair 1 { Elt 0 1 } None) ] - - location: 12 (just consumed gas: 0.010) - [ 1 - (Pair { Elt 0 1 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt 0 1 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt 0 1 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt 0 1 } - { Elt 0 1 } ] - - location: 13 (just consumed gas: 0.025) - [ 1 - { Elt 0 1 } - { Elt 0 1 } ] - - location: 17 (just consumed gas: 0.080) - [ False - { Elt 0 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt 0 1 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt 0 1 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt 0 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt 0 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt 0 1 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input1071610051-.out deleted file mode 100644 index 39bfb4c25bfd..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input1071610051-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"baz"' --level 1 --trace-stack -storage - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.181) - [ (Pair "baz" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "baz" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "baz" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.089) - [ False - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input700475845-.out deleted file mode 100644 index 1fcde26e9ae1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input700475845-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.181) - [ (Pair "bar" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.089) - [ True - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input905318451-.out deleted file mode 100644 index 25bc91ede2bb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage109689253--input905318451-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "bar" 4 ; Elt "foo" 11 } None)' and input '"foo"' --level 1 --trace-stack -storage - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 10.181) - [ (Pair "foo" { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "foo" - (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 13 (just consumed gas: 0.025) - [ "foo" - { Elt "bar" 4 ; Elt "foo" 11 } - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 17 (just consumed gas: 0.089) - [ True - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "bar" 4 ; Elt "foo" 11 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "bar" 4 ; Elt "foo" 11 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 4 ; Elt "foo" 11 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage495706788--input700475845-.out deleted file mode 100644 index 017e71dc22b7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage495706788--input700475845-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair {} None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair {} (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.480) - [ (Pair "bar" {} None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair {} None) ] - - location: 13 (just consumed gas: 0) - [ (Pair {} None) ] - - location: 15 (just consumed gas: 0.010) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - {} - {} ] - - location: 17 (just consumed gas: 0.083) - [ False - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - {} ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage915708427--input700475845-.out deleted file mode 100644 index 02d60cd12721..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage915708427--input700475845-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 1 } None)' and input '"bar"' --level 1 --trace-stack -storage - (Pair { Elt "foo" 1 } (Some False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.810) - [ (Pair "bar" { Elt "foo" 1 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "bar" - (Pair { Elt "foo" 1 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "foo" 1 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "foo" 1 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - { Elt "foo" 1 } ] - - location: 13 (just consumed gas: 0.025) - [ "bar" - { Elt "foo" 1 } - { Elt "foo" 1 } ] - - location: 17 (just consumed gas: 0.086) - [ False - { Elt "foo" 1 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some False) - { Elt "foo" 1 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - (Some False) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 1 } (Some False)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "foo" 1 } (Some False)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 1 } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage936682951--input905318451-.out deleted file mode 100644 index 6d35fb7c4728..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_mem_string--storage936682951--input905318451-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_mem_string.tz on storage '(Pair { Elt "foo" 0 } None)' and input '"foo"' --level 1 --trace-stack -storage - (Pair { Elt "foo" 0 } (Some True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 9.810) - [ (Pair "foo" { Elt "foo" 0 } None) ] - - location: 12 (just consumed gas: 0.010) - [ "foo" - (Pair { Elt "foo" 0 } None) ] - - location: 13 (just consumed gas: 0) - [ (Pair { Elt "foo" 0 } None) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "foo" 0 } ] - - location: 16 (just consumed gas: 0.010) - [ { Elt "foo" 0 } - { Elt "foo" 0 } ] - - location: 13 (just consumed gas: 0.025) - [ "foo" - { Elt "foo" 0 } - { Elt "foo" 0 } ] - - location: 17 (just consumed gas: 0.086) - [ True - { Elt "foo" 0 } ] - - location: 18 (just consumed gas: 0.010) - [ (Some True) - { Elt "foo" 0 } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "foo" 0 } - (Some True) ] - - location: 20 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 0 } (Some True)) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair { Elt "foo" 0 } (Some True)) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 0 } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input15265129-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input15265129-.out deleted file mode 100644 index 2ccc9a8978f4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input15265129-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 }' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.829) - [ (Pair { Elt "a" 1 } 111) ] - - location: 9 (just consumed gas: 0.010) - [ { Elt "a" 1 } ] - - location: 10 (just consumed gas: 0.010) - [ 1 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input158311065-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input158311065-.out deleted file mode 100644 index 4e0e1c97361a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input158311065-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 }' --level 1 --trace-stack -storage - 3 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 5.517) - [ (Pair { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } 111) ] - - location: 9 (just consumed gas: 0.010) - [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 } ] - - location: 10 (just consumed gas: 0.010) - [ 3 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 3 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 3) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input456982702-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input456982702-.out deleted file mode 100644 index 8c9d523ce34b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input456982702-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{ Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 }' --level 1 --trace-stack -storage - 6 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.556) - [ (Pair { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 } 111) ] - - location: 9 (just consumed gas: 0.010) - [ { Elt "a" 1 ; Elt "b" 2 ; Elt "c" 3 ; Elt "d" 4 ; Elt "e" 5 ; Elt "f" 6 } ] - - location: 10 (just consumed gas: 0.010) - [ 6 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 6 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 6) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input457300675-.out deleted file mode 100644 index dd45d2ac1911..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -map_size--storage492856247--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/map_size.tz on storage 111 and input '{}' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.523) - [ (Pair {} 111) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ 0 ] - - location: 11 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mul--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mul--storage125992234--input125992234-.out deleted file mode 100644 index a9362baed141..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mul--storage125992234--input125992234-.out +++ /dev/null @@ -1,131 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mul.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 50.799) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ Unit ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ 7987 ] - - location: 12 (just consumed gas: 0.010) - [ 10 - 7987 ] - - location: 15 (just consumed gas: 0) - [ 79870 ] - - location: 16 (just consumed gas: 0.010) - [ 79870 - 79870 ] - - location: 19 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 10 ] - - location: 31 (just consumed gas: 0.010) - [ 7987 - 10 ] - - location: 34 (just consumed gas: 0) - [ 79870 ] - - location: 35 (just consumed gas: 0.010) - [ 79870 - 79870 ] - - location: 38 (just consumed gas: 0.035) - [ 0 ] - - location: 40 (just consumed gas: 0.010) - [ True ] - - location: 41 (just consumed gas: 0) - [ ] - - location: 41 (just consumed gas: 0.015) - [ ] - - location: 47 (just consumed gas: 0.010) - [ 10 ] - - location: 50 (just consumed gas: 0.010) - [ -7987 - 10 ] - - location: 53 (just consumed gas: 0.061) - [ -79870 ] - - location: 54 (just consumed gas: 0.010) - [ -79870 - -79870 ] - - location: 57 (just consumed gas: 0.035) - [ 0 ] - - location: 59 (just consumed gas: 0.010) - [ True ] - - location: 60 (just consumed gas: 0) - [ ] - - location: 60 (just consumed gas: 0.015) - [ ] - - location: 66 (just consumed gas: 0.010) - [ 10 ] - - location: 69 (just consumed gas: 0.010) - [ -7987 - 10 ] - - location: 72 (just consumed gas: 0.061) - [ -79870 ] - - location: 73 (just consumed gas: 0.010) - [ -79870 - -79870 ] - - location: 76 (just consumed gas: 0.035) - [ 0 ] - - location: 78 (just consumed gas: 0.010) - [ True ] - - location: 79 (just consumed gas: 0) - [ ] - - location: 79 (just consumed gas: 0.015) - [ ] - - location: 85 (just consumed gas: 0.010) - [ -10 ] - - location: 88 (just consumed gas: 0.010) - [ 7987 - -10 ] - - location: 91 (just consumed gas: 0.061) - [ -79870 ] - - location: 92 (just consumed gas: 0.010) - [ -79870 - -79870 ] - - location: 95 (just consumed gas: 0.035) - [ 0 ] - - location: 97 (just consumed gas: 0.010) - [ True ] - - location: 98 (just consumed gas: 0) - [ ] - - location: 98 (just consumed gas: 0.015) - [ ] - - location: 104 (just consumed gas: 0.010) - [ 10 ] - - location: 107 (just consumed gas: 0.010) - [ 7987 - 10 ] - - location: 110 (just consumed gas: 0.061) - [ 79870 ] - - location: 111 (just consumed gas: 0.010) - [ 79870 - 79870 ] - - location: 114 (just consumed gas: 0.035) - [ 0 ] - - location: 116 (just consumed gas: 0.010) - [ True ] - - location: 117 (just consumed gas: 0) - [ ] - - location: 117 (just consumed gas: 0.015) - [ ] - - location: 123 (just consumed gas: 0.010) - [ Unit ] - - location: 124 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 126 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out deleted file mode 100644 index 08366a846177..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x00 and input 257 --level 1 --trace-stack -storage - 0x0101000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.947) - [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 257 ] - - location: 8 (just consumed gas: 0.010) - [ 1 - 257 ] - - location: 11 (just consumed gas: 0.010) - [ 257 - 1 ] - - location: 12 (just consumed gas: 0.080) - [ (Some (Pair 257 0)) ] - - location: 14 (just consumed gas: 0) - [ (Pair 257 0) ] - - location: 14 (just consumed gas: 0.015) - [ (Pair 257 0) ] - - location: 20 (just consumed gas: 0.010) - [ 257 ] - - location: 21 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 257 ] - - location: 24 (just consumed gas: 0.267) - [ 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (just consumed gas: 0.010) - [ {} - 0x0101000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (just consumed gas: 0.010) - [ (Pair {} 0x0101000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out deleted file mode 100644 index 53eff24baa3d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz on storage 0x02 and input 16 --level 1 --trace-stack -storage - 0x1000000000000000000000000000000000000000000000000000000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 10.947) - [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - - location: 7 (just consumed gas: 0.010) - [ 16 ] - - location: 8 (just consumed gas: 0.010) - [ 1 - 16 ] - - location: 11 (just consumed gas: 0.010) - [ 16 - 1 ] - - location: 12 (just consumed gas: 0.080) - [ (Some (Pair 16 0)) ] - - location: 14 (just consumed gas: 0) - [ (Pair 16 0) ] - - location: 14 (just consumed gas: 0.015) - [ (Pair 16 0) ] - - location: 20 (just consumed gas: 0.010) - [ 16 ] - - location: 21 (just consumed gas: 0.010) - [ 0x0100000000000000000000000000000000000000000000000000000000000000 - 16 ] - - location: 24 (just consumed gas: 0.266) - [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 25 (just consumed gas: 0.010) - [ {} - 0x1000000000000000000000000000000000000000000000000000000000000000 ] - - location: 27 (just consumed gas: 0.010) - [ (Pair {} 0x1000000000000000000000000000000000000000000000000000000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input1067298059-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input1067298059-.out deleted file mode 100644 index b0f16f90d575..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input1067298059-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left -2)' --level 1 --trace-stack -storage - 2 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.169) - [ (Pair (Left -2) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Left -2) ] - - location: 10 (just consumed gas: 0) - [ -2 ] - - location: 12 (just consumed gas: 0.025) - [ 2 ] - - location: 10 (just consumed gas: 0.015) - [ 2 ] - - location: 15 (just consumed gas: 0.010) - [ {} - 2 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} 2) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input380029349-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input380029349-.out deleted file mode 100644 index ae4253b66528..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input380029349-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 2)' --level 1 --trace-stack -storage - -2 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.169) - [ (Pair (Right 2) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Right 2) ] - - location: 10 (just consumed gas: 0) - [ 2 ] - - location: 14 (just consumed gas: 0.025) - [ -2 ] - - location: 10 (just consumed gas: 0.015) - [ -2 ] - - location: 15 (just consumed gas: 0.010) - [ {} - -2 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} -2) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input563503226-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input563503226-.out deleted file mode 100644 index 5066d6c5ef20..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input563503226-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 2)' --level 1 --trace-stack -storage - -2 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.169) - [ (Pair (Left 2) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Left 2) ] - - location: 10 (just consumed gas: 0) - [ 2 ] - - location: 12 (just consumed gas: 0.025) - [ -2 ] - - location: 10 (just consumed gas: 0.015) - [ -2 ] - - location: 15 (just consumed gas: 0.010) - [ {} - -2 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} -2) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input788662499-.out deleted file mode 100644 index 3e390f406f73..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input788662499-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Right 0)' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.169) - [ (Pair (Right 0) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Right 0) ] - - location: 10 (just consumed gas: 0) - [ 0 ] - - location: 14 (just consumed gas: 0.025) - [ 0 ] - - location: 10 (just consumed gas: 0.015) - [ 0 ] - - location: 15 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input972832189-.out deleted file mode 100644 index 2e8bd39041bf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -neg--storage680650890--input972832189-.out +++ /dev/null @@ -1,25 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/neg.tz on storage 0 and input '(Left 0)' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.169) - [ (Pair (Left 0) 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Left 0) ] - - location: 10 (just consumed gas: 0) - [ 0 ] - - location: 12 (just consumed gas: 0.025) - [ 0 ] - - location: 10 (just consumed gas: 0.015) - [ 0 ] - - location: 15 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -none--storage11179311--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -none--storage11179311--input125992234-.out deleted file mode 100644 index 28eed3a837a4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -none--storage11179311--input125992234-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/none.tz on storage 'Some 10' and input Unit --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.773) - [ (Pair Unit (Some 10)) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ None ] - - location: 11 (just consumed gas: 0.010) - [ {} - None ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input570553153-.out deleted file mode 100644 index e035414bdcf0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input570553153-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input False --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair False None) ] - - location: 8 (just consumed gas: 0.010) - [ False ] - - location: 9 (just consumed gas: 0.010) - [ True ] - - location: 10 (just consumed gas: 0.010) - [ (Some True) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input954397288-.out deleted file mode 100644 index 9d547dd52e6a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not--storage921624073--input954397288-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not.tz on storage None and input True --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair True None) ] - - location: 8 (just consumed gas: 0.010) - [ True ] - - location: 9 (just consumed gas: 0.010) - [ False ] - - location: 10 (just consumed gas: 0.010) - [ (Some False) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input1051197453-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input1051197453-.out deleted file mode 100644 index 557803a49f9a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input1051197453-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 8)' --level 1 --trace-stack -storage - (Some -9) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Right 8) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Right 8) ] - - location: 11 (just consumed gas: 0) - [ 8 ] - - location: 15 (just consumed gas: 0.025) - [ -9 ] - - location: 11 (just consumed gas: 0.015) - [ -9 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -9) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -9) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -9)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input123939249-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input123939249-.out deleted file mode 100644 index ea6006e27da1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input123939249-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 7)' --level 1 --trace-stack -storage - (Some -8) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Left 7) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Left 7) ] - - location: 11 (just consumed gas: 0) - [ 7 ] - - location: 13 (just consumed gas: 0.025) - [ -8 ] - - location: 11 (just consumed gas: 0.015) - [ -8 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -8) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -8) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -8)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input24243730-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input24243730-.out deleted file mode 100644 index c16db1d33aea..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input24243730-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -8)' --level 1 --trace-stack -storage - (Some 7) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Left -8) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Left -8) ] - - location: 11 (just consumed gas: 0) - [ -8 ] - - location: 13 (just consumed gas: 0.025) - [ 7 ] - - location: 11 (just consumed gas: 0.015) - [ 7 ] - - location: 16 (just consumed gas: 0.010) - [ (Some 7) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some 7) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some 7)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input518945720-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input518945720-.out deleted file mode 100644 index 05587d4191b2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input518945720-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 8)' --level 1 --trace-stack -storage - (Some -9) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Left 8) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Left 8) ] - - location: 11 (just consumed gas: 0) - [ 8 ] - - location: 13 (just consumed gas: 0.025) - [ -9 ] - - location: 11 (just consumed gas: 0.015) - [ -9 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -9) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -9) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -9)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input788662499-.out deleted file mode 100644 index 7a92005bdbc4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input788662499-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 0)' --level 1 --trace-stack -storage - (Some -1) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Right 0) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Right 0) ] - - location: 11 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.025) - [ -1 ] - - location: 11 (just consumed gas: 0.015) - [ -1 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -1) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -1)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input906118781-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input906118781-.out deleted file mode 100644 index d3ad59469bb6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input906118781-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Right 7)' --level 1 --trace-stack -storage - (Some -8) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Right 7) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Right 7) ] - - location: 11 (just consumed gas: 0) - [ 7 ] - - location: 15 (just consumed gas: 0.025) - [ -8 ] - - location: 11 (just consumed gas: 0.015) - [ -8 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -8) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -8) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -8)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input921874253-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input921874253-.out deleted file mode 100644 index 95948ccac6ed..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input921874253-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left -9)' --level 1 --trace-stack -storage - (Some 8) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Left -9) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Left -9) ] - - location: 11 (just consumed gas: 0) - [ -9 ] - - location: 13 (just consumed gas: 0.025) - [ 8 ] - - location: 11 (just consumed gas: 0.015) - [ 8 ] - - location: 16 (just consumed gas: 0.010) - [ (Some 8) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some 8) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some 8)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input972832189-.out deleted file mode 100644 index b9d8ee211f68..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_binary--storage921624073--input972832189-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_binary.tz on storage None and input '(Left 0)' --level 1 --trace-stack -storage - (Some -1) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.965) - [ (Pair (Left 0) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Left 0) ] - - location: 11 (just consumed gas: 0) - [ 0 ] - - location: 13 (just consumed gas: 0.025) - [ -1 ] - - location: 11 (just consumed gas: 0.015) - [ -1 ] - - location: 16 (just consumed gas: 0.010) - [ (Some -1) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some -1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some -1)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_bytes--storage125992234--input125992234-.out deleted file mode 100644 index c4bf6ec56c8a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -not_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,66 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/not_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 25.094) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0x05 ] - - location: 11 (just consumed gas: 0.030) - [ 0xfa ] - - location: 12 (just consumed gas: 0.010) - [ 0xfa - 0xfa ] - - location: 17 (just consumed gas: 0.035) - [ 0 ] - - location: 18 (just consumed gas: 0.010) - [ True ] - - location: 19 (just consumed gas: 0) - [ ] - - location: 19 (just consumed gas: 0.015) - [ ] - - location: 25 (just consumed gas: 0.010) - [ 0x0005 ] - - location: 28 (just consumed gas: 0.031) - [ 0xfffa ] - - location: 29 (just consumed gas: 0.010) - [ 0xfffa - 0xfffa ] - - location: 34 (just consumed gas: 0.035) - [ 0 ] - - location: 35 (just consumed gas: 0.010) - [ True ] - - location: 36 (just consumed gas: 0) - [ ] - - location: 36 (just consumed gas: 0.015) - [ ] - - location: 42 (just consumed gas: 0.010) - [ 0xff05 ] - - location: 45 (just consumed gas: 0.031) - [ 0x00fa ] - - location: 46 (just consumed gas: 0.010) - [ 0x00fa - 0x00fa ] - - location: 51 (just consumed gas: 0.035) - [ 0 ] - - location: 52 (just consumed gas: 0.010) - [ True ] - - location: 53 (just consumed gas: 0) - [ ] - - location: 53 (just consumed gas: 0.015) - [ ] - - location: 59 (just consumed gas: 0.010) - [ Unit ] - - location: 60 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 62 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input106930123-.out deleted file mode 100644 index b6ad156cbfc5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input106930123-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False True)' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.115) - [ (Pair (Pair False True) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair False True) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair False True) - (Pair False True) ] - - location: 12 (just consumed gas: 0.010) - [ False - (Pair False True) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair False True) - False ] - - location: 14 (just consumed gas: 0.010) - [ True - False ] - - location: 15 (just consumed gas: 0.010) - [ True ] - - location: 16 (just consumed gas: 0.010) - [ (Some True) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input181204719-.out deleted file mode 100644 index b6f7adea85f8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input181204719-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True False)' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.115) - [ (Pair (Pair True False) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair True False) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair True False) - (Pair True False) ] - - location: 12 (just consumed gas: 0.010) - [ True - (Pair True False) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair True False) - True ] - - location: 14 (just consumed gas: 0.010) - [ False - True ] - - location: 15 (just consumed gas: 0.010) - [ True ] - - location: 16 (just consumed gas: 0.010) - [ (Some True) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input223774825-.out deleted file mode 100644 index 3024f3875bdd..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input223774825-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair False False)' --level 1 --trace-stack -storage - (Some False) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.115) - [ (Pair (Pair False False) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair False False) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair False False) - (Pair False False) ] - - location: 12 (just consumed gas: 0.010) - [ False - (Pair False False) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair False False) - False ] - - location: 14 (just consumed gas: 0.010) - [ False - False ] - - location: 15 (just consumed gas: 0.010) - [ False ] - - location: 16 (just consumed gas: 0.010) - [ (Some False) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input908807505-.out deleted file mode 100644 index 73792660a133..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or--storage921624073--input908807505-.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or.tz on storage None and input '(Pair True True)' --level 1 --trace-stack -storage - (Some True) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 8.115) - [ (Pair (Pair True True) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair True True) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair True True) - (Pair True True) ] - - location: 12 (just consumed gas: 0.010) - [ True - (Pair True True) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair True True) - True ] - - location: 14 (just consumed gas: 0.010) - [ True - True ] - - location: 15 (just consumed gas: 0.010) - [ True ] - - location: 16 (just consumed gas: 0.010) - [ (Some True) ] - - location: 17 (just consumed gas: 0.010) - [ {} - (Some True) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair {} (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input1056991424-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input1056991424-.out deleted file mode 100644 index c63faee8ab9e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input1056991424-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 0 8)' --level 1 --trace-stack -storage - (Some 8) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 0 8) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 8) ] - - location: 11 (just consumed gas: 0.010) - [ 0 - 8 ] - - location: 12 (just consumed gas: 0.035) - [ 8 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 8) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 8) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 8)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input375993021-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input375993021-.out deleted file mode 100644 index 533a417e0a0c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input375993021-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 14 1)' --level 1 --trace-stack -storage - (Some 15) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 14 1) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 14 1) ] - - location: 11 (just consumed gas: 0.010) - [ 14 - 1 ] - - location: 12 (just consumed gas: 0.035) - [ 15 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 15) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 15) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 15)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input673240563-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input673240563-.out deleted file mode 100644 index be667b34a104..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input673240563-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 8 0)' --level 1 --trace-stack -storage - (Some 8) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 8 0) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 8 0) ] - - location: 11 (just consumed gas: 0.010) - [ 8 - 0 ] - - location: 12 (just consumed gas: 0.035) - [ 8 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 8) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 8) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 8)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input747448890-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input747448890-.out deleted file mode 100644 index 756616442b1f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input747448890-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 7 7)' --level 1 --trace-stack -storage - (Some 7) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 7 7) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 7 7) ] - - location: 11 (just consumed gas: 0.010) - [ 7 - 7 ] - - location: 12 (just consumed gas: 0.035) - [ 7 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 7) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 7) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 7)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input832403787-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input832403787-.out deleted file mode 100644 index f1149c147744..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input832403787-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 15 4)' --level 1 --trace-stack -storage - (Some 15) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 15 4) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 15 4) ] - - location: 11 (just consumed gas: 0.010) - [ 15 - 4 ] - - location: 12 (just consumed gas: 0.035) - [ 15 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 15) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 15) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 15)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input858098961-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input858098961-.out deleted file mode 100644 index f46f7b92ce34..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_binary--storage921624073--input858098961-.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_binary.tz on storage None and input '(Pair 4 8)' --level 1 --trace-stack -storage - (Some 12) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 6.141) - [ (Pair (Pair 4 8) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 4 8) ] - - location: 11 (just consumed gas: 0.010) - [ 4 - 8 ] - - location: 12 (just consumed gas: 0.035) - [ 12 ] - - location: 13 (just consumed gas: 0.010) - [ (Some 12) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some 12) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some 12)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_bytes--storage125992234--input125992234-.out deleted file mode 100644 index 634117f5cf2c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -or_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,75 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/or_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 28.329) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0x05 ] - - location: 11 (just consumed gas: 0.010) - [ 0x06 - 0x05 ] - - location: 14 (just consumed gas: 0.035) - [ 0x07 ] - - location: 15 (just consumed gas: 0.010) - [ 0x07 - 0x07 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 0x0005 ] - - location: 31 (just consumed gas: 0.010) - [ 0x0106 - 0x0005 ] - - location: 34 (just consumed gas: 0.036) - [ 0x0107 ] - - location: 35 (just consumed gas: 0.010) - [ 0x0107 - 0x0107 ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 0x05 ] - - location: 51 (just consumed gas: 0.010) - [ 0x0106 - 0x05 ] - - location: 54 (just consumed gas: 0.036) - [ 0x0107 ] - - location: 55 (just consumed gas: 0.010) - [ 0x0107 - 0x0107 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ Unit ] - - location: 69 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 71 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input305844558-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input305844558-.out deleted file mode 100644 index a5781ddff4ce..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input305844558-.out +++ /dev/null @@ -1,845 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 148.783) - [ (Pair (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - Unit) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (just consumed gas: 0.010) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (just consumed gas: 0.010) - [ -1 - (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (just consumed gas: 0) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (just consumed gas: 0.010) - [ -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (just consumed gas: 0.025) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (just consumed gas: 0.241) - [ 0x050041 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (just consumed gas: 0.421) - [ (Some -1) - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (just consumed gas: 0) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (just consumed gas: 0.015) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (just consumed gas: 0.035) - [ 0 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (just consumed gas: 0.010) - [ True - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (just consumed gas: 0) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (just consumed gas: 0.015) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (just consumed gas: 0.010) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (just consumed gas: 0.010) - [ 1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (just consumed gas: 0) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (just consumed gas: 0.010) - [ 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (just consumed gas: 0.025) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (just consumed gas: 0.241) - [ 0x050001 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (just consumed gas: 0.421) - [ (Some 1) - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (just consumed gas: 0) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (just consumed gas: 0.015) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (just consumed gas: 0.035) - [ 0 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (just consumed gas: 0.010) - [ True - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (just consumed gas: 0) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (just consumed gas: 0.015) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (just consumed gas: 0.010) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (just consumed gas: 0.010) - [ "foobar" - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (just consumed gas: 0) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (just consumed gas: 0.010) - [ "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (just consumed gas: 0.025) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (just consumed gas: 0.276) - [ 0x050100000006666f6f626172 - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (just consumed gas: 0.680) - [ (Some "foobar") - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (just consumed gas: 0) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (just consumed gas: 0.015) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (just consumed gas: 0.035) - [ 0 - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (just consumed gas: 0.010) - [ True - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (just consumed gas: 0) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (just consumed gas: 0.015) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (just consumed gas: 0.010) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (just consumed gas: 0.010) - [ 0x00aabbcc - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (just consumed gas: 0) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (just consumed gas: 0.010) - [ 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (just consumed gas: 0.025) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (just consumed gas: 0.256) - [ 0x050a0000000400aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (just consumed gas: 0.565) - [ (Some 0x00aabbcc) - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (just consumed gas: 0) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (just consumed gas: 0.015) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (just consumed gas: 0.035) - [ 0 - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (just consumed gas: 0.010) - [ True - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0.015) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (just consumed gas: 0.010) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (just consumed gas: 0.010) - [ 1000 - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (just consumed gas: 0) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (just consumed gas: 0.010) - [ 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (just consumed gas: 0.025) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (just consumed gas: 0.266) - [ 0x0500a80f - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (just consumed gas: 0.442) - [ (Some 1000) - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (just consumed gas: 0) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (just consumed gas: 0.015) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (just consumed gas: 0.035) - [ 0 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (just consumed gas: 0.010) - [ True - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0.015) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (just consumed gas: 0.010) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (just consumed gas: 0.010) - [ False - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (just consumed gas: 0.010) - [ False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0.025) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (just consumed gas: 0.216) - [ 0x050303 - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (just consumed gas: 0.421) - [ (Some False) - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0.015) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (just consumed gas: 0.035) - [ 0 - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (just consumed gas: 0.010) - [ True - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0.015) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (just consumed gas: 0.010) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0.025) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (just consumed gas: 0.506) - [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (just consumed gas: 0.973) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (just consumed gas: 0.036) - [ 0 - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (just consumed gas: 0.010) - [ True - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0.015) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (just consumed gas: 0.010) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (just consumed gas: 0.010) - [ "2019-09-09T08:35:33Z" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (just consumed gas: 0) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (just consumed gas: 0.010) - [ "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (just consumed gas: 0.025) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (just consumed gas: 0.316) - [ 0x050095bbb0d70b - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (just consumed gas: 0.503) - [ (Some "2019-09-09T08:35:33Z") - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (just consumed gas: 0) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (just consumed gas: 0.015) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (just consumed gas: 0.035) - [ 0 - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (just consumed gas: 0.010) - [ True - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (just consumed gas: 0.516) - [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (just consumed gas: 0.994) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (just consumed gas: 0.036) - [ 0 ] - - location: 231 (just consumed gas: 0.010) - [ True ] - - location: 232 (just consumed gas: 0) - [ ] - - location: 232 (just consumed gas: 0.015) - [ ] - - location: 238 (just consumed gas: 0.010) - [ 0 ] - - location: 241 (just consumed gas: 0.216) - [ 0x050000 ] - - location: 242 (just consumed gas: 0.421) - [ (Some 0) ] - - location: 245 (just consumed gas: 0) - [ 0 ] - - location: 245 (just consumed gas: 0.015) - [ 0 ] - - location: 251 (just consumed gas: 0.010) - [ ] - - location: 252 (just consumed gas: 0.010) - [ -1 ] - - location: 255 (just consumed gas: 0.241) - [ 0x050041 ] - - location: 256 (just consumed gas: 96.321) - [ None ] - - location: 259 (just consumed gas: 0) - [ ] - - location: 259 (just consumed gas: 0.015) - [ ] - - location: 265 (just consumed gas: 0.010) - [ 0x ] - - location: 268 (just consumed gas: 0.260) - [ None ] - - location: 271 (just consumed gas: 0) - [ ] - - location: 271 (just consumed gas: 0.015) - [ ] - - location: 277 (just consumed gas: 0.010) - [ 0x04 ] - - location: 280 (just consumed gas: 0.280) - [ None ] - - location: 283 (just consumed gas: 0) - [ ] - - location: 283 (just consumed gas: 0.015) - [ ] - - location: 289 (just consumed gas: 0.010) - [ 0x05 ] - - location: 292 (just consumed gas: 0.280) - [ None ] - - location: 295 (just consumed gas: 0) - [ ] - - location: 295 (just consumed gas: 0.015) - [ ] - - location: 301 (just consumed gas: 0.010) - [ Unit ] - - location: 302 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 304 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input646365167-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input646365167-.out deleted file mode 100644 index f1bd61ffae35..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev--storage125992234--input646365167-.out +++ /dev/null @@ -1,845 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev.tz on storage Unit and input '(Pair -1 (Pair 1 (Pair "foobar" (Pair 0x00AABBCC (Pair 1000 (Pair False (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5"))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 148.783) - [ (Pair (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - Unit) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 17 (just consumed gas: 0.010) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 18 (just consumed gas: 0.010) - [ -1 - (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (just consumed gas: 0) - [ (Pair -1 - 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 21 (just consumed gas: 0.010) - [ -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 19 (just consumed gas: 0.025) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 22 (just consumed gas: 0.241) - [ 0x050041 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 23 (just consumed gas: 0.421) - [ (Some -1) - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (just consumed gas: 0) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 26 (just consumed gas: 0.015) - [ -1 - -1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 34 (just consumed gas: 0.035) - [ 0 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 35 (just consumed gas: 0.010) - [ True - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (just consumed gas: 0) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 36 (just consumed gas: 0.015) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 42 (just consumed gas: 0.010) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 43 (just consumed gas: 0.010) - [ 1 - (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (just consumed gas: 0) - [ (Pair 1 - "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 46 (just consumed gas: 0.010) - [ 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 44 (just consumed gas: 0.025) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 47 (just consumed gas: 0.241) - [ 0x050001 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 48 (just consumed gas: 0.421) - [ (Some 1) - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (just consumed gas: 0) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 51 (just consumed gas: 0.015) - [ 1 - 1 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 59 (just consumed gas: 0.035) - [ 0 - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 60 (just consumed gas: 0.010) - [ True - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (just consumed gas: 0) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 61 (just consumed gas: 0.015) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 67 (just consumed gas: 0.010) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 68 (just consumed gas: 0.010) - [ "foobar" - (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (just consumed gas: 0) - [ (Pair "foobar" - 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 71 (just consumed gas: 0.010) - [ "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 69 (just consumed gas: 0.025) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 72 (just consumed gas: 0.276) - [ 0x050100000006666f6f626172 - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 73 (just consumed gas: 0.680) - [ (Some "foobar") - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (just consumed gas: 0) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 76 (just consumed gas: 0.015) - [ "foobar" - "foobar" - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 84 (just consumed gas: 0.035) - [ 0 - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 85 (just consumed gas: 0.010) - [ True - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (just consumed gas: 0) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 86 (just consumed gas: 0.015) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 92 (just consumed gas: 0.010) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 93 (just consumed gas: 0.010) - [ 0x00aabbcc - (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (just consumed gas: 0) - [ (Pair 0x00aabbcc - 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 96 (just consumed gas: 0.010) - [ 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 94 (just consumed gas: 0.025) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 97 (just consumed gas: 0.256) - [ 0x050a0000000400aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 98 (just consumed gas: 0.565) - [ (Some 0x00aabbcc) - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (just consumed gas: 0) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 101 (just consumed gas: 0.015) - [ 0x00aabbcc - 0x00aabbcc - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 109 (just consumed gas: 0.035) - [ 0 - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 110 (just consumed gas: 0.010) - [ True - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 111 (just consumed gas: 0.015) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 117 (just consumed gas: 0.010) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 118 (just consumed gas: 0.010) - [ 1000 - (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (just consumed gas: 0) - [ (Pair 1000 - False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 121 (just consumed gas: 0.010) - [ 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 119 (just consumed gas: 0.025) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 122 (just consumed gas: 0.266) - [ 0x0500a80f - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 123 (just consumed gas: 0.442) - [ (Some 1000) - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (just consumed gas: 0) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 126 (just consumed gas: 0.015) - [ 1000 - 1000 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 134 (just consumed gas: 0.035) - [ 0 - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 135 (just consumed gas: 0.010) - [ True - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 136 (just consumed gas: 0.015) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 142 (just consumed gas: 0.010) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 143 (just consumed gas: 0.010) - [ False - (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0) - [ (Pair False - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 146 (just consumed gas: 0.010) - [ False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 144 (just consumed gas: 0.025) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 147 (just consumed gas: 0.216) - [ 0x050303 - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 148 (just consumed gas: 0.421) - [ (Some False) - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 151 (just consumed gas: 0.015) - [ False - False - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 159 (just consumed gas: 0.035) - [ 0 - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 160 (just consumed gas: 0.010) - [ True - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 161 (just consumed gas: 0.015) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 167 (just consumed gas: 0.010) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 168 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0) - [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 171 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 169 (just consumed gas: 0.025) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 172 (just consumed gas: 0.506) - [ 0x050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 173 (just consumed gas: 0.973) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 176 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 184 (just consumed gas: 0.036) - [ 0 - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 185 (just consumed gas: 0.010) - [ True - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 186 (just consumed gas: 0.015) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 192 (just consumed gas: 0.010) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 193 (just consumed gas: 0.010) - [ "2019-09-09T08:35:33Z" - (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 194 (just consumed gas: 0) - [ (Pair "2019-09-09T08:35:33Z" "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") ] - - location: 196 (just consumed gas: 0.010) - [ "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 194 (just consumed gas: 0.025) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 197 (just consumed gas: 0.316) - [ 0x050095bbb0d70b - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 198 (just consumed gas: 0.503) - [ (Some "2019-09-09T08:35:33Z") - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (just consumed gas: 0) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 201 (just consumed gas: 0.015) - [ "2019-09-09T08:35:33Z" - "2019-09-09T08:35:33Z" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 209 (just consumed gas: 0.035) - [ 0 - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 210 (just consumed gas: 0.010) - [ True - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 211 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 217 (just consumed gas: 0.010) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 218 (just consumed gas: 0.516) - [ 0x050a000000160000bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 219 (just consumed gas: 0.994) - [ (Some "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 222 (just consumed gas: 0.015) - [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" - "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] - - location: 230 (just consumed gas: 0.036) - [ 0 ] - - location: 231 (just consumed gas: 0.010) - [ True ] - - location: 232 (just consumed gas: 0) - [ ] - - location: 232 (just consumed gas: 0.015) - [ ] - - location: 238 (just consumed gas: 0.010) - [ 0 ] - - location: 241 (just consumed gas: 0.216) - [ 0x050000 ] - - location: 242 (just consumed gas: 0.421) - [ (Some 0) ] - - location: 245 (just consumed gas: 0) - [ 0 ] - - location: 245 (just consumed gas: 0.015) - [ 0 ] - - location: 251 (just consumed gas: 0.010) - [ ] - - location: 252 (just consumed gas: 0.010) - [ -1 ] - - location: 255 (just consumed gas: 0.241) - [ 0x050041 ] - - location: 256 (just consumed gas: 96.321) - [ None ] - - location: 259 (just consumed gas: 0) - [ ] - - location: 259 (just consumed gas: 0.015) - [ ] - - location: 265 (just consumed gas: 0.010) - [ 0x ] - - location: 268 (just consumed gas: 0.260) - [ None ] - - location: 271 (just consumed gas: 0) - [ ] - - location: 271 (just consumed gas: 0.015) - [ ] - - location: 277 (just consumed gas: 0.010) - [ 0x04 ] - - location: 280 (just consumed gas: 0.280) - [ None ] - - location: 283 (just consumed gas: 0) - [ ] - - location: 283 (just consumed gas: 0.015) - [ ] - - location: 289 (just consumed gas: 0.010) - [ 0x05 ] - - location: 292 (just consumed gas: 0.280) - [ None ] - - location: 295 (just consumed gas: 0) - [ ] - - location: 295 (just consumed gas: 0.015) - [ ] - - location: 301 (just consumed gas: 0.010) - [ Unit ] - - location: 302 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 304 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out deleted file mode 100644 index afdb4c9199c2..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out +++ /dev/null @@ -1,1194 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") (Pair { Unit } (Pair { True } (Pair (Pair 19 10) (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK } )))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 28 (just consumed gas: 503.139) - [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - Unit) ] - - location: 28 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 29 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 30 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 31 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 33 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 31 (just consumed gas: 0.025) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 34 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 35 (just consumed gas: 0) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 37 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 38 (just consumed gas: 75.159) - [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 41 (just consumed gas: 0) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 41 (just consumed gas: 0.015) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 47 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 35 (just consumed gas: 0.025) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 50 (just consumed gas: 0.035) - [ 0 - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 51 (just consumed gas: 0.010) - [ True - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 52 (just consumed gas: 0) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 52 (just consumed gas: 0.015) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 58 (just consumed gas: 0.010) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 59 (just consumed gas: 0.010) - [ Unit - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 60 (just consumed gas: 0) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 62 (just consumed gas: 0.010) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 60 (just consumed gas: 0.025) - [ Unit - Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 63 (just consumed gas: 0.216) - [ 0x05030b - Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 64 (just consumed gas: 0) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 66 (just consumed gas: 0.216) - [ 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 67 (just consumed gas: 0.421) - [ (Some Unit) - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 70 (just consumed gas: 0) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 70 (just consumed gas: 0.015) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 76 (just consumed gas: 0.216) - [ 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 64 (just consumed gas: 0.025) - [ 0x05030b - 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 79 (just consumed gas: 0.035) - [ 0 - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 80 (just consumed gas: 0.010) - [ True - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 81 (just consumed gas: 0) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 81 (just consumed gas: 0.015) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 87 (just consumed gas: 0.010) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 88 (just consumed gas: 0.010) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 89 (just consumed gas: 0) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 91 (just consumed gas: 0.010) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 89 (just consumed gas: 0.025) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 92 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 93 (just consumed gas: 0) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 95 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 96 (just consumed gas: 1.835) - [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 99 (just consumed gas: 0) - [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 99 (just consumed gas: 0.015) - [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 105 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 93 (just consumed gas: 0.025) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 108 (just consumed gas: 0.036) - [ 0 - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 109 (just consumed gas: 0.010) - [ True - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 110 (just consumed gas: 0) - [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 110 (just consumed gas: 0.015) - [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 116 (just consumed gas: 0.010) - [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 117 (just consumed gas: 0.010) - [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 118 (just consumed gas: 0) - [ (Pair (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 120 (just consumed gas: 0.010) - [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 118 (just consumed gas: 0.025) - [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 121 (just consumed gas: 1.127) - [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 122 (just consumed gas: 0) - [ (Some "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 124 (just consumed gas: 1.127) - [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 125 (just consumed gas: 1.976) - [ (Some (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe")) - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 129 (just consumed gas: 0) - [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 129 (just consumed gas: 0.015) - [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 135 (just consumed gas: 1.127) - [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 122 (just consumed gas: 0.025) - [ 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - 0x0505090a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 138 (just consumed gas: 0.036) - [ 0 - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 139 (just consumed gas: 0.010) - [ True - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 140 (just consumed gas: 0) - [ (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 140 (just consumed gas: 0.015) - [ (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 146 (just consumed gas: 0.010) - [ (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 147 (just consumed gas: 0.010) - [ { Unit } - (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 148 (just consumed gas: 0) - [ (Pair { Unit } - { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 150 (just consumed gas: 0.010) - [ { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 148 (just consumed gas: 0.025) - [ { Unit } - { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 151 (just consumed gas: 0.432) - [ 0x050200000002030b - { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 152 (just consumed gas: 0) - [ { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 154 (just consumed gas: 0.432) - [ 0x050200000002030b - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 155 (just consumed gas: 0.624) - [ (Some { Unit }) - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 159 (just consumed gas: 0) - [ { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 159 (just consumed gas: 0.015) - [ { Unit } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 165 (just consumed gas: 0.432) - [ 0x050200000002030b - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 152 (just consumed gas: 0.025) - [ 0x050200000002030b - 0x050200000002030b - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 168 (just consumed gas: 0.035) - [ 0 - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 169 (just consumed gas: 0.010) - [ True - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 170 (just consumed gas: 0) - [ (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 170 (just consumed gas: 0.015) - [ (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 176 (just consumed gas: 0.010) - [ (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 177 (just consumed gas: 0.010) - [ { True } - (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 178 (just consumed gas: 0) - [ (Pair { True } - (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 180 (just consumed gas: 0.010) - [ { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 178 (just consumed gas: 0.025) - [ { True } - { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 181 (just consumed gas: 0.432) - [ 0x050200000002030a - { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 182 (just consumed gas: 0) - [ { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 184 (just consumed gas: 0.432) - [ 0x050200000002030a - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 185 (just consumed gas: 0.756) - [ (Some { True }) - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 189 (just consumed gas: 0) - [ { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 189 (just consumed gas: 0.015) - [ { True } - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 195 (just consumed gas: 0.432) - [ 0x050200000002030a - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 182 (just consumed gas: 0.025) - [ 0x050200000002030a - 0x050200000002030a - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 198 (just consumed gas: 0.035) - [ 0 - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 199 (just consumed gas: 0.010) - [ True - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 200 (just consumed gas: 0) - [ (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 200 (just consumed gas: 0.015) - [ (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 206 (just consumed gas: 0.010) - [ (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 207 (just consumed gas: 0.010) - [ (Pair 19 10) - (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 208 (just consumed gas: 0) - [ (Pair (Pair 19 10) - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 210 (just consumed gas: 0.010) - [ (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 208 (just consumed gas: 0.025) - [ (Pair 19 10) - (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 211 (just consumed gas: 0.698) - [ 0x0507070013000a - (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 212 (just consumed gas: 0) - [ (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 214 (just consumed gas: 0.698) - [ 0x0507070013000a - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 215 (just consumed gas: 0.703) - [ (Some (Pair 19 10)) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 220 (just consumed gas: 0) - [ (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 220 (just consumed gas: 0.015) - [ (Pair 19 10) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 226 (just consumed gas: 0.698) - [ 0x0507070013000a - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 212 (just consumed gas: 0.025) - [ 0x0507070013000a - 0x0507070013000a - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 229 (just consumed gas: 0.035) - [ 0 - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 230 (just consumed gas: 0.010) - [ True - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 231 (just consumed gas: 0) - [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 231 (just consumed gas: 0.015) - [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 237 (just consumed gas: 0.010) - [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 238 (just consumed gas: 0.010) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 239 (just consumed gas: 0) - [ (Pair (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK }) ] - - location: 241 (just consumed gas: 0.010) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 239 (just consumed gas: 0.025) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 242 (just consumed gas: 0.722) - [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (just consumed gas: 0) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 245 (just consumed gas: 0.722) - [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 246 (just consumed gas: 1.114) - [ (Some (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5")) - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (just consumed gas: 0) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 251 (just consumed gas: 0.015) - [ (Left "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5") - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 257 (just consumed gas: 0.722) - [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 243 (just consumed gas: 0.025) - [ 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - 0x0505050a0000001500bdfe3885e846fdea23c9acbe3bb1cfcca9c03e4a - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 260 (just consumed gas: 0.035) - [ 0 - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 261 (just consumed gas: 0.010) - [ True - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (just consumed gas: 0) - [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 262 (just consumed gas: 0.015) - [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 268 (just consumed gas: 0.010) - [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 269 (just consumed gas: 0.010) - [ { Elt 0 "foo" ; Elt 1 "bar" } - (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 270 (just consumed gas: 0) - [ (Pair { Elt 0 "foo" ; Elt 1 "bar" } { PACK }) ] - - location: 272 (just consumed gas: 0.010) - [ { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 270 (just consumed gas: 0.025) - [ { Elt 0 "foo" ; Elt 1 "bar" } - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 273 (just consumed gas: 1.467) - [ 0x050200000018070400000100000003666f6f070400010100000003626172 - { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 274 (just consumed gas: 0) - [ { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 276 (just consumed gas: 1.467) - [ 0x050200000018070400000100000003666f6f070400010100000003626172 - { PACK } ] - - location: 277 (just consumed gas: 1.658) - [ (Some { Elt 0 "foo" ; Elt 1 "bar" }) - { PACK } ] - - location: 282 (just consumed gas: 0) - [ { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 282 (just consumed gas: 0.015) - [ { Elt 0 "foo" ; Elt 1 "bar" } - { PACK } ] - - location: 288 (just consumed gas: 1.467) - [ 0x050200000018070400000100000003666f6f070400010100000003626172 - { PACK } ] - - location: 274 (just consumed gas: 0.025) - [ 0x050200000018070400000100000003666f6f070400010100000003626172 - 0x050200000018070400000100000003666f6f070400010100000003626172 - { PACK } ] - - location: 291 (just consumed gas: 0.035) - [ 0 - { PACK } ] - - location: 292 (just consumed gas: 0.010) - [ True - { PACK } ] - - location: 293 (just consumed gas: 0) - [ { PACK } ] - - location: 293 (just consumed gas: 0.015) - [ { PACK } ] - - location: 299 (just consumed gas: 0.010) - [ { PACK } - { PACK } ] - - location: 300 (just consumed gas: 0.597) - [ 0x050200000002030c - { PACK } ] - - location: 301 (just consumed gas: 0) - [ { PACK } ] - - location: 303 (just consumed gas: 0.597) - [ 0x050200000002030c ] - - location: 304 (just consumed gas: 1.556) - [ (Some { PACK }) ] - - location: 309 (just consumed gas: 0) - [ { PACK } ] - - location: 309 (just consumed gas: 0.015) - [ { PACK } ] - - location: 315 (just consumed gas: 0.597) - [ 0x050200000002030c ] - - location: 301 (just consumed gas: 0.025) - [ 0x050200000002030c - 0x050200000002030c ] - - location: 318 (just consumed gas: 0.035) - [ 0 ] - - location: 319 (just consumed gas: 0.010) - [ True ] - - location: 320 (just consumed gas: 0) - [ ] - - location: 320 (just consumed gas: 0.015) - [ ] - - location: 326 (just consumed gas: 0.010) - [ Unit ] - - location: 327 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 329 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out deleted file mode 100644 index abc9a71f95e5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out +++ /dev/null @@ -1,1032 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/packunpack_rev_cty.tz on storage Unit and input '(Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" (Pair Unit (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" (Pair None (Pair { } (Pair { } (Pair (Pair 40 -10) (Pair (Right "2019-09-09T08:35:33Z") (Pair { } { DUP ; DROP ; PACK } )))))))))' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 28 (just consumed gas: 493.644) - [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - Unit) ] - - location: 28 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 29 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 30 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 31 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 33 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 31 (just consumed gas: 0.025) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 34 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 35 (just consumed gas: 0) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 37 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 38 (just consumed gas: 75.159) - [ (Some "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav") - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 41 (just consumed gas: 0) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 41 (just consumed gas: 0.015) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 47 (just consumed gas: 1.001) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 35 (just consumed gas: 0.025) - [ 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 50 (just consumed gas: 0.035) - [ 0 - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 51 (just consumed gas: 0.010) - [ True - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 52 (just consumed gas: 0) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 52 (just consumed gas: 0.015) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 58 (just consumed gas: 0.010) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 59 (just consumed gas: 0.010) - [ Unit - (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 60 (just consumed gas: 0) - [ (Pair Unit - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 62 (just consumed gas: 0.010) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 60 (just consumed gas: 0.025) - [ Unit - Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 63 (just consumed gas: 0.216) - [ 0x05030b - Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 64 (just consumed gas: 0) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 66 (just consumed gas: 0.216) - [ 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 67 (just consumed gas: 0.421) - [ (Some Unit) - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 70 (just consumed gas: 0) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 70 (just consumed gas: 0.015) - [ Unit - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 76 (just consumed gas: 0.216) - [ 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 64 (just consumed gas: 0.025) - [ 0x05030b - 0x05030b - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 79 (just consumed gas: 0.035) - [ 0 - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 80 (just consumed gas: 0.010) - [ True - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 81 (just consumed gas: 0) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 81 (just consumed gas: 0.015) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 87 (just consumed gas: 0.010) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 88 (just consumed gas: 0.010) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 89 (just consumed gas: 0) - [ (Pair "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 91 (just consumed gas: 0.010) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 89 (just consumed gas: 0.025) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 92 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 93 (just consumed gas: 0) - [ "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 95 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 96 (just consumed gas: 1.835) - [ (Some "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe") - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 99 (just consumed gas: 0) - [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 99 (just consumed gas: 0.015) - [ "sigXeXB5JD5TaLb3xgTPKjgf9W45judiCmNP9UBdZBdmtHSGBxL1M8ZSUb6LpjGP2MdfUBTB4WHs5APnvyRV1LooU6QHJuDe" - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 105 (just consumed gas: 0.911) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 93 (just consumed gas: 0.025) - [ 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 108 (just consumed gas: 0.036) - [ 0 - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 109 (just consumed gas: 0.010) - [ True - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 110 (just consumed gas: 0) - [ (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 110 (just consumed gas: 0.015) - [ (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 116 (just consumed gas: 0.010) - [ (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 117 (just consumed gas: 0.010) - [ None - (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 118 (just consumed gas: 0) - [ (Pair None - {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 120 (just consumed gas: 0.010) - [ None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 118 (just consumed gas: 0.025) - [ None - None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 121 (just consumed gas: 0.216) - [ 0x050306 - None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 122 (just consumed gas: 0) - [ None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 124 (just consumed gas: 0.216) - [ 0x050306 - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 125 (just consumed gas: 0.421) - [ (Some None) - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 129 (just consumed gas: 0) - [ None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 129 (just consumed gas: 0.015) - [ None - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 135 (just consumed gas: 0.216) - [ 0x050306 - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 122 (just consumed gas: 0.025) - [ 0x050306 - 0x050306 - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 138 (just consumed gas: 0.035) - [ 0 - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 139 (just consumed gas: 0.010) - [ True - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 140 (just consumed gas: 0) - [ (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 140 (just consumed gas: 0.015) - [ (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 146 (just consumed gas: 0.010) - [ (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 147 (just consumed gas: 0.010) - [ {} - (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 148 (just consumed gas: 0) - [ (Pair {} - {} - (Pair 40 -10) - (Right "2019-09-09T08:35:33Z") - {} - { DUP ; DROP ; PACK }) ] - - location: 150 (just consumed gas: 0.010) - [ {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 148 (just consumed gas: 0.025) - [ {} - {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 151 (just consumed gas: 0.216) - [ 0x050200000000 - {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (just consumed gas: 0) - [ {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 154 (just consumed gas: 0.216) - [ 0x050200000000 - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 155 (just consumed gas: 0.483) - [ (Some {}) - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (just consumed gas: 0) - [ {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 159 (just consumed gas: 0.015) - [ {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 165 (just consumed gas: 0.216) - [ 0x050200000000 - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 152 (just consumed gas: 0.025) - [ 0x050200000000 - 0x050200000000 - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 168 (just consumed gas: 0.035) - [ 0 - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 169 (just consumed gas: 0.010) - [ True - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (just consumed gas: 0) - [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 170 (just consumed gas: 0.015) - [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 176 (just consumed gas: 0.010) - [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 177 (just consumed gas: 0.010) - [ {} - (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (just consumed gas: 0) - [ (Pair {} (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 180 (just consumed gas: 0.010) - [ {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 178 (just consumed gas: 0.025) - [ {} - {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 181 (just consumed gas: 0.216) - [ 0x050200000000 - {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (just consumed gas: 0) - [ {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 184 (just consumed gas: 0.216) - [ 0x050200000000 - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 185 (just consumed gas: 0.483) - [ (Some {}) - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (just consumed gas: 0) - [ {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 189 (just consumed gas: 0.015) - [ {} - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 195 (just consumed gas: 0.216) - [ 0x050200000000 - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 182 (just consumed gas: 0.025) - [ 0x050200000000 - 0x050200000000 - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 198 (just consumed gas: 0.035) - [ 0 - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 199 (just consumed gas: 0.010) - [ True - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (just consumed gas: 0) - [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 200 (just consumed gas: 0.015) - [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 206 (just consumed gas: 0.010) - [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 207 (just consumed gas: 0.010) - [ (Pair 40 -10) - (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (just consumed gas: 0) - [ (Pair (Pair 40 -10) (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 210 (just consumed gas: 0.010) - [ (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 208 (just consumed gas: 0.025) - [ (Pair 40 -10) - (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 211 (just consumed gas: 0.698) - [ 0x0507070028004a - (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (just consumed gas: 0) - [ (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 214 (just consumed gas: 0.698) - [ 0x0507070028004a - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 215 (just consumed gas: 0.703) - [ (Some (Pair 40 -10)) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (just consumed gas: 0) - [ (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 220 (just consumed gas: 0.015) - [ (Pair 40 -10) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 226 (just consumed gas: 0.698) - [ 0x0507070028004a - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 212 (just consumed gas: 0.025) - [ 0x0507070028004a - 0x0507070028004a - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 229 (just consumed gas: 0.035) - [ 0 - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 230 (just consumed gas: 0.010) - [ True - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (just consumed gas: 0) - [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 231 (just consumed gas: 0.015) - [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 237 (just consumed gas: 0.010) - [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 238 (just consumed gas: 0.010) - [ (Right "2019-09-09T08:35:33Z") - (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 239 (just consumed gas: 0) - [ (Pair (Right "2019-09-09T08:35:33Z") {} { DUP ; DROP ; PACK }) ] - - location: 241 (just consumed gas: 0.010) - [ (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 239 (just consumed gas: 0.025) - [ (Right "2019-09-09T08:35:33Z") - (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 242 (just consumed gas: 0.532) - [ 0x0505080095bbb0d70b - (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (just consumed gas: 0) - [ (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 245 (just consumed gas: 0.532) - [ 0x0505080095bbb0d70b - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 246 (just consumed gas: 0.644) - [ (Some (Right "2019-09-09T08:35:33Z")) - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (just consumed gas: 0) - [ (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 251 (just consumed gas: 0.015) - [ (Right "2019-09-09T08:35:33Z") - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 257 (just consumed gas: 0.532) - [ 0x0505080095bbb0d70b - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 243 (just consumed gas: 0.025) - [ 0x0505080095bbb0d70b - 0x0505080095bbb0d70b - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 260 (just consumed gas: 0.035) - [ 0 - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 261 (just consumed gas: 0.010) - [ True - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (just consumed gas: 0) - [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 262 (just consumed gas: 0.015) - [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 268 (just consumed gas: 0.010) - [ (Pair {} { DUP ; DROP ; PACK }) - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 269 (just consumed gas: 0.010) - [ {} - (Pair {} { DUP ; DROP ; PACK }) ] - - location: 270 (just consumed gas: 0) - [ (Pair {} { DUP ; DROP ; PACK }) ] - - location: 272 (just consumed gas: 0.010) - [ {} - { DUP ; DROP ; PACK } ] - - location: 270 (just consumed gas: 0.025) - [ {} - {} - { DUP ; DROP ; PACK } ] - - location: 273 (just consumed gas: 0.216) - [ 0x050200000000 - {} - { DUP ; DROP ; PACK } ] - - location: 274 (just consumed gas: 0) - [ {} - { DUP ; DROP ; PACK } ] - - location: 276 (just consumed gas: 0.216) - [ 0x050200000000 - { DUP ; DROP ; PACK } ] - - location: 277 (just consumed gas: 0.483) - [ (Some {}) - { DUP ; DROP ; PACK } ] - - location: 282 (just consumed gas: 0) - [ {} - { DUP ; DROP ; PACK } ] - - location: 282 (just consumed gas: 0.015) - [ {} - { DUP ; DROP ; PACK } ] - - location: 288 (just consumed gas: 0.216) - [ 0x050200000000 - { DUP ; DROP ; PACK } ] - - location: 274 (just consumed gas: 0.025) - [ 0x050200000000 - 0x050200000000 - { DUP ; DROP ; PACK } ] - - location: 291 (just consumed gas: 0.035) - [ 0 - { DUP ; DROP ; PACK } ] - - location: 292 (just consumed gas: 0.010) - [ True - { DUP ; DROP ; PACK } ] - - location: 293 (just consumed gas: 0) - [ { DUP ; DROP ; PACK } ] - - location: 293 (just consumed gas: 0.015) - [ { DUP ; DROP ; PACK } ] - - location: 299 (just consumed gas: 0.010) - [ { DUP ; DROP ; PACK } - { DUP ; DROP ; PACK } ] - - location: 300 (just consumed gas: 1.129) - [ 0x05020000000603210320030c - { DUP ; DROP ; PACK } ] - - location: 301 (just consumed gas: 0) - [ { DUP ; DROP ; PACK } ] - - location: 303 (just consumed gas: 1.129) - [ 0x05020000000603210320030c ] - - location: 304 (just consumed gas: 3.150) - [ (Some { DUP ; DROP ; PACK }) ] - - location: 309 (just consumed gas: 0) - [ { DUP ; DROP ; PACK } ] - - location: 309 (just consumed gas: 0.015) - [ { DUP ; DROP ; PACK } ] - - location: 315 (just consumed gas: 1.129) - [ 0x05020000000603210320030c ] - - location: 301 (just consumed gas: 0.025) - [ 0x05020000000603210320030c - 0x05020000000603210320030c ] - - location: 318 (just consumed gas: 0.035) - [ 0 ] - - location: 319 (just consumed gas: 0.010) - [ True ] - - location: 320 (just consumed gas: 0) - [ ] - - location: 320 (just consumed gas: 0.015) - [ ] - - location: 326 (just consumed gas: 0.010) - [ Unit ] - - location: 327 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 329 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input106930123-.out deleted file mode 100644 index 5c7d00152c45..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input106930123-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False True)' --level 1 --trace-stack -storage - (Some (Pair False True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 5.501) - [ (Pair (Pair False True) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair False True) ] - - location: 13 (just consumed gas: 0.010) - [ (Some (Pair False True)) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some (Pair False True)) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair False True))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input181204719-.out deleted file mode 100644 index 423c1a63421b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input181204719-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True False)' --level 1 --trace-stack -storage - (Some (Pair True False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 5.501) - [ (Pair (Pair True False) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair True False) ] - - location: 13 (just consumed gas: 0.010) - [ (Some (Pair True False)) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some (Pair True False)) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair True False))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input223774825-.out deleted file mode 100644 index fafa23a9fdf0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input223774825-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair False False)' --level 1 --trace-stack -storage - (Some (Pair False False)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 5.501) - [ (Pair (Pair False False) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair False False) ] - - location: 13 (just consumed gas: 0.010) - [ (Some (Pair False False)) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some (Pair False False)) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair False False))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input908807505-.out deleted file mode 100644 index 3faf4dc01083..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pair_id--storage921624073--input908807505-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pair_id.tz on storage None and input '(Pair True True)' --level 1 --trace-stack -storage - (Some (Pair True True)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 5.501) - [ (Pair (Pair True True) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair True True) ] - - location: 13 (just consumed gas: 0.010) - [ (Some (Pair True True)) ] - - location: 14 (just consumed gas: 0.010) - [ {} - (Some (Pair True True)) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair True True))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec--storage256947135--input1050356042-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec--storage256947135--input1050356042-.out deleted file mode 100644 index af77d7851c3f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec--storage256947135--input1050356042-.out +++ /dev/null @@ -1,47 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec.tz on storage 14 and input 38 --level 1 --trace-stack -storage - 52 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 9.021) - [ (Pair 38 14) ] - - location: 7 (just consumed gas: 0.010) - [ { UNPAIR ; ADD } - (Pair 38 14) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair 38 14) - { UNPAIR ; ADD } ] - - location: 16 (just consumed gas: 0.010) - [ 38 - 14 - { UNPAIR ; ADD } ] - - location: 17 (just consumed gas: 0) - [ 14 - { UNPAIR ; ADD } ] - - location: 19 (just consumed gas: 0.401) - [ { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 17 (just consumed gas: 0.025) - [ 38 - { PUSH nat 14 ; PAIR ; { UNPAIR ; ADD } } ] - - location: 12 (just consumed gas: 0.010) - [ 14 - 38 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair 14 38) ] - - location: 13 (just consumed gas: 0.010) - [ 14 - 38 ] - - location: 14 (just consumed gas: 0.035) - [ 52 ] - - location: 20 (just consumed gas: 0.025) - [ 52 ] - - location: 21 (just consumed gas: 0.010) - [ {} - 52 ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} 52) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec_2--storage197120858--input179371027-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec_2--storage197120858--input179371027-.out deleted file mode 100644 index 19f553b87e42..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -pexec_2--storage197120858--input179371027-.out +++ /dev/null @@ -1,282 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/pexec_2.tz on storage '{ 0 ; 1 ; 2 ; 3}' and input 4 --level 1 --trace-stack -storage - { 0 ; 7 ; 14 ; 21 } -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 17.009) - [ (Pair 4 { 0 ; 1 ; 2 ; 3 }) ] - - location: 8 (just consumed gas: 0.010) - [ 4 - { 0 ; 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010) - [ { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } - 4 - { 0 ; 1 ; 2 ; 3 } ] - - location: 23 (just consumed gas: 0.010) - [ 4 - { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } - { 0 ; 1 ; 2 ; 3 } ] - - location: 24 (just consumed gas: 0.401) - [ { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } - { 0 ; 1 ; 2 ; 3 } ] - - location: 25 (just consumed gas: 0.010) - [ 3 - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } - { 0 ; 1 ; 2 ; 3 } ] - - location: 28 (just consumed gas: 0.401) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { 0 ; 1 ; 2 ; 3 } ] - - location: 29 (just consumed gas: 0.010) - [ { 0 ; 1 ; 2 ; 3 } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (just consumed gas: 0) - [ 0 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (just consumed gas: 0.010) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0.025) - [ 0 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (just consumed gas: 0.010) - [ 3 - 0 ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 3 0) ] - - location: 16 (just consumed gas: 0.010) - [ 4 - (Pair 3 0) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 4 3 0) ] - - location: 17 (just consumed gas: 0.010) - [ 4 - (Pair 3 0) ] - - location: 18 (just consumed gas: 0) - [ (Pair 3 0) ] - - location: 20 (just consumed gas: 0.010) - [ 3 - 0 ] - - location: 18 (just consumed gas: 0.025) - [ 4 - 3 - 0 ] - - location: 21 (just consumed gas: 0.035) - [ 7 - 0 ] - - location: 22 (just consumed gas: 0.056) - [ 0 ] - - location: 35 (just consumed gas: 0.025) - [ 0 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (just consumed gas: 0.015) - [ 1 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (just consumed gas: 0.010) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0.025) - [ 1 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (just consumed gas: 0.010) - [ 3 - 1 ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 3 1) ] - - location: 16 (just consumed gas: 0.010) - [ 4 - (Pair 3 1) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 4 3 1) ] - - location: 17 (just consumed gas: 0.010) - [ 4 - (Pair 3 1) ] - - location: 18 (just consumed gas: 0) - [ (Pair 3 1) ] - - location: 20 (just consumed gas: 0.010) - [ 3 - 1 ] - - location: 18 (just consumed gas: 0.025) - [ 4 - 3 - 1 ] - - location: 21 (just consumed gas: 0.035) - [ 7 - 1 ] - - location: 22 (just consumed gas: 0.059) - [ 7 ] - - location: 35 (just consumed gas: 0.025) - [ 7 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (just consumed gas: 0.015) - [ 2 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (just consumed gas: 0.010) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0.025) - [ 2 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (just consumed gas: 0.010) - [ 3 - 2 ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 3 2) ] - - location: 16 (just consumed gas: 0.010) - [ 4 - (Pair 3 2) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 4 3 2) ] - - location: 17 (just consumed gas: 0.010) - [ 4 - (Pair 3 2) ] - - location: 18 (just consumed gas: 0) - [ (Pair 3 2) ] - - location: 20 (just consumed gas: 0.010) - [ 3 - 2 ] - - location: 18 (just consumed gas: 0.025) - [ 4 - 3 - 2 ] - - location: 21 (just consumed gas: 0.035) - [ 7 - 2 ] - - location: 22 (just consumed gas: 0.059) - [ 14 ] - - location: 35 (just consumed gas: 0.025) - [ 14 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (just consumed gas: 0.015) - [ 3 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 34 (just consumed gas: 0.010) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 32 (just consumed gas: 0.025) - [ 3 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 16 (just consumed gas: 0.010) - [ 3 - 3 ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 3 3) ] - - location: 16 (just consumed gas: 0.010) - [ 4 - (Pair 3 3) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair 4 3 3) ] - - location: 17 (just consumed gas: 0.010) - [ 4 - (Pair 3 3) ] - - location: 18 (just consumed gas: 0) - [ (Pair 3 3) ] - - location: 20 (just consumed gas: 0.010) - [ 3 - 3 ] - - location: 18 (just consumed gas: 0.025) - [ 4 - 3 - 3 ] - - location: 21 (just consumed gas: 0.035) - [ 7 - 3 ] - - location: 22 (just consumed gas: 0.059) - [ 21 ] - - location: 35 (just consumed gas: 0.025) - [ 21 - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 30 (just consumed gas: 0.015) - [ { 0 ; 7 ; 14 ; 21 } - { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 36 (just consumed gas: 0) - [ { PUSH int 3 ; - PAIR ; - { PUSH int 4 ; PAIR ; { UNPAIR ; DIP { UNPAIR } ; ADD ; MUL } } } ] - - location: 38 (just consumed gas: 0.010) - [ ] - - location: 36 (just consumed gas: 0.025) - [ { 0 ; 7 ; 14 ; 21 } ] - - location: 39 (just consumed gas: 0.010) - [ {} - { 0 ; 7 ; 14 ; 21 } ] - - location: 41 (just consumed gas: 0.010) - [ (Pair {} { 0 ; 7 ; 14 ; 21 }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ret_int--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ret_int--storage921624073--input125992234-.out deleted file mode 100644 index d05bd1256cea..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -ret_int--storage921624073--input125992234-.out +++ /dev/null @@ -1,23 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/ret_int.tz on storage None and input Unit --level 1 --trace-stack -storage - (Some 300) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.514) - [ (Pair Unit None) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.010) - [ 300 ] - - location: 12 (just consumed gas: 0.010) - [ (Some 300) ] - - location: 13 (just consumed gas: 0.010) - [ {} - (Some 300) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair {} (Some 300)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input457300675-.out deleted file mode 100644 index f66e52af1cf3..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 6.956) - [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0) - [ {} ] - - location: 16 (just consumed gas: 0.010) - [ {} - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input851203613-.out deleted file mode 100644 index 0d84341b9332..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse--storage528921618--input851203613-.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.328) - [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } - {} ] - - location: 13 (just consumed gas: 0) - [ "c" - {} ] - - location: 15 (just consumed gas: 0.010) - [ { "c" } ] - - location: 13 (just consumed gas: 0.015) - [ "b" - { "c" } ] - - location: 15 (just consumed gas: 0.010) - [ { "b" ; "c" } ] - - location: 13 (just consumed gas: 0.015) - [ "a" - { "b" ; "c" } ] - - location: 15 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 13 (just consumed gas: 0.015) - [ { "a" ; "b" ; "c" } ] - - location: 16 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input457300675-.out deleted file mode 100644 index 1b3729e8120c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input457300675-.out +++ /dev/null @@ -1,50 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 13.786) - [ (Pair {} { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.010) - [ True - {} - {} ] - - location: 33 (just consumed gas: 0) - [ {} - {} ] - - location: 18 (just consumed gas: 0) - [ {} ] - - location: 28 (just consumed gas: 0.010) - [ {} - {} ] - - location: 30 (just consumed gas: 0.010) - [ False - {} - {} ] - - location: 18 (just consumed gas: 0.015) - [ False - {} - {} ] - - location: 33 (just consumed gas: 0.015) - [ {} - {} ] - - location: 33 (just consumed gas: 0.010) - [ {} ] - - location: 34 (just consumed gas: 0.010) - [ {} - {} ] - - location: 36 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input851203613-.out deleted file mode 100644 index 296e75ac087d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -reverse_loop--storage528921618--input851203613-.out +++ /dev/null @@ -1,131 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/reverse_loop.tz on storage '{""}' and input '{ "c" ; "b" ; "a" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 14.158) - [ (Pair { "c" ; "b" ; "a" } { "" }) ] - - location: 9 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "c" ; "b" ; "a" } ] - - location: 12 (just consumed gas: 0.010) - [ { "c" ; "b" ; "a" } - {} ] - - location: 13 (just consumed gas: 0.010) - [ True - { "c" ; "b" ; "a" } - {} ] - - location: 33 (just consumed gas: 0) - [ { "c" ; "b" ; "a" } - {} ] - - location: 18 (just consumed gas: 0) - [ "c" - { "b" ; "a" } - {} ] - - location: 20 (just consumed gas: 0.010) - [ { "b" ; "a" } - "c" - {} ] - - location: 21 (just consumed gas: 0) - [ "c" - {} ] - - location: 23 (just consumed gas: 0.010) - [ { "c" } ] - - location: 21 (just consumed gas: 0.025) - [ { "b" ; "a" } - { "c" } ] - - location: 24 (just consumed gas: 0.010) - [ True - { "b" ; "a" } - { "c" } ] - - location: 18 (just consumed gas: 0.015) - [ True - { "b" ; "a" } - { "c" } ] - - location: 33 (just consumed gas: 0.015) - [ { "b" ; "a" } - { "c" } ] - - location: 18 (just consumed gas: 0) - [ "b" - { "a" } - { "c" } ] - - location: 20 (just consumed gas: 0.010) - [ { "a" } - "b" - { "c" } ] - - location: 21 (just consumed gas: 0) - [ "b" - { "c" } ] - - location: 23 (just consumed gas: 0.010) - [ { "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025) - [ { "a" } - { "b" ; "c" } ] - - location: 24 (just consumed gas: 0.010) - [ True - { "a" } - { "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015) - [ True - { "a" } - { "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015) - [ { "a" } - { "b" ; "c" } ] - - location: 18 (just consumed gas: 0) - [ "a" - {} - { "b" ; "c" } ] - - location: 20 (just consumed gas: 0.010) - [ {} - "a" - { "b" ; "c" } ] - - location: 21 (just consumed gas: 0) - [ "a" - { "b" ; "c" } ] - - location: 23 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 21 (just consumed gas: 0.025) - [ {} - { "a" ; "b" ; "c" } ] - - location: 24 (just consumed gas: 0.010) - [ True - {} - { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015) - [ True - {} - { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015) - [ {} - { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0) - [ { "a" ; "b" ; "c" } ] - - location: 28 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 30 (just consumed gas: 0.010) - [ False - {} - { "a" ; "b" ; "c" } ] - - location: 18 (just consumed gas: 0.015) - [ False - {} - { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.015) - [ {} - { "a" ; "b" ; "c" } ] - - location: 33 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 34 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 36 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sapling_empty_state--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sapling_empty_state--storage457300675--input125992234-.out deleted file mode 100644 index 6f8927f74159..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sapling_empty_state--storage457300675--input125992234-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sapling_empty_state.tz on storage '{}' and input Unit --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.358) - [ (Pair Unit {}) ] - - location: 8 (just consumed gas: 0.010) - [ ] - - location: 9 (just consumed gas: 0.300) - [ {} ] - - location: 11 (just consumed gas: 0.010) - [ {} - {} ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_address--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_address--storage125992234--input125992234-.out deleted file mode 100644 index 14ce9df843bf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_address--storage125992234--input125992234-.out +++ /dev/null @@ -1,46 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_address.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 13.726) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ { DROP ; SELF_ADDRESS } ] - - location: 14 (just consumed gas: 0.010) - [ Unit - { DROP ; SELF_ADDRESS } ] - - location: 12 (just consumed gas: 0.010) - [ ] - - location: 13 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (just consumed gas: 0.025) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 16 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" - "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 17 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" - "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 20 (just consumed gas: 0.036) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ Unit ] - - location: 29 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_default_entrypoint--storage125992234--input125992234.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_default_entrypoint--storage125992234--input125992234.out deleted file mode 100644 index 351217e0af47..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_default_entrypoint--storage125992234--input125992234.out +++ /dev/null @@ -1,47 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_default_entrypoint.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 15.515) - [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (just consumed gas: 0.010) - [ ] - - location: 14 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (just consumed gas: 0.010) - [ ] - - location: 16 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (just consumed gas: 0.010) - [ ] - - location: 18 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (just consumed gas: 0.516) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (just consumed gas: 0.516) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (just consumed gas: 0.035) - [ 0 ] - - location: 25 (just consumed gas: 0.010) - [ True ] - - location: 26 (just consumed gas: 0) - [ ] - - location: 26 (just consumed gas: 0.015) - [ ] - - location: 32 (just consumed gas: 0.010) - [ Unit ] - - location: 33 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 35 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_entrypoint--storage125992234--input289072903-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_entrypoint--storage125992234--input289072903-.out deleted file mode 100644 index 32dbde69988f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -self_with_entrypoint--storage125992234--input289072903-.out +++ /dev/null @@ -1,93 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/self_with_entrypoint.tz on storage Unit and input 'Left (Left 0)' --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 13 (just consumed gas: 40.124) - [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (just consumed gas: 0.010) - [ ] - - location: 14 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (just consumed gas: 0.526) - [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" - 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (just consumed gas: 0.516) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (just consumed gas: 0.010) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (just consumed gas: 0) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (just consumed gas: 0.010) - [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (just consumed gas: 0.025) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (just consumed gas: 0.035) - [ -1 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (just consumed gas: 0.010) - [ True - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (just consumed gas: 0) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (just consumed gas: 0.015) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (just consumed gas: 0.516) - [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 - 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (just consumed gas: 0.035) - [ 0 ] - - location: 37 (just consumed gas: 0.010) - [ True ] - - location: 38 (just consumed gas: 0) - [ ] - - location: 38 (just consumed gas: 0.015) - [ ] - - location: 44 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (just consumed gas: 0.010) - [ ] - - location: 49 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (just consumed gas: 0.010) - [ ] - - location: 54 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (just consumed gas: 0.010) - [ ] - - location: 61 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (just consumed gas: 0.010) - [ ] - - location: 66 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (just consumed gas: 0.010) - [ ] - - location: 77 (just consumed gas: 0.010) - [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (just consumed gas: 0.010) - [ ] - - location: 88 (just consumed gas: 0.010) - [ Unit ] - - location: 89 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 91 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input620760059-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input620760059-.out deleted file mode 100644 index 2671dabca726..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input620760059-.out +++ /dev/null @@ -1,49 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"world"' --level 1 --trace-stack -storage - (Pair "world" 0) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.979) - [ (Pair "world" "hello" 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "world" "hello" 0) - (Pair "world" "hello" 0) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "world" "hello" 0) ] - - location: 11 (just consumed gas: 0) - [ (Pair "world" "hello" 0) ] - - location: 13 (just consumed gas: 0.010) - [ "world" ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 0) - "world" ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "hello" 0) - "world" ] - - location: 16 (just consumed gas: 0.010) - [ "hello" - (Pair "hello" 0) - "world" ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 0) - "world" ] - - location: 18 (just consumed gas: 0.010) - [ 0 - "world" ] - - location: 19 (just consumed gas: 0.010) - [ "world" - 0 ] - - location: 20 (just consumed gas: 0.010) - [ (Pair "world" 0) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair "world" 0) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} "world" 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input717096222-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input717096222-.out deleted file mode 100644 index 965214d63a02..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input717096222-.out +++ /dev/null @@ -1,49 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '"abc"' --level 1 --trace-stack -storage - (Pair "abc" 0) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.959) - [ (Pair "abc" "hello" 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "abc" "hello" 0) - (Pair "abc" "hello" 0) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "abc" "hello" 0) ] - - location: 11 (just consumed gas: 0) - [ (Pair "abc" "hello" 0) ] - - location: 13 (just consumed gas: 0.010) - [ "abc" ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 0) - "abc" ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "hello" 0) - "abc" ] - - location: 16 (just consumed gas: 0.010) - [ "hello" - (Pair "hello" 0) - "abc" ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 0) - "abc" ] - - location: 18 (just consumed gas: 0.010) - [ 0 - "abc" ] - - location: 19 (just consumed gas: 0.010) - [ "abc" - 0 ] - - location: 20 (just consumed gas: 0.010) - [ (Pair "abc" 0) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair "abc" 0) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} "abc" 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input79230375-.out deleted file mode 100644 index 1a2835b513fc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_car--storage224747103--input79230375-.out +++ /dev/null @@ -1,49 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_car.tz on storage '(Pair "hello" 0)' and input '""' --level 1 --trace-stack -storage - (Pair "" 0) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.929) - [ (Pair "" "hello" 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "" "hello" 0) - (Pair "" "hello" 0) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "" "hello" 0) ] - - location: 11 (just consumed gas: 0) - [ (Pair "" "hello" 0) ] - - location: 13 (just consumed gas: 0.010) - [ "" ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 0) - "" ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "hello" 0) - "" ] - - location: 16 (just consumed gas: 0.010) - [ "hello" - (Pair "hello" 0) - "" ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 0) - "" ] - - location: 18 (just consumed gas: 0.010) - [ 0 - "" ] - - location: 19 (just consumed gas: 0.010) - [ "" - 0 ] - - location: 20 (just consumed gas: 0.010) - [ (Pair "" 0) ] - - location: 21 (just consumed gas: 0.010) - [ {} - (Pair "" 0) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair {} "" 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage205576101--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage205576101--input654274102-.out deleted file mode 100644 index 97ada3c12cd4..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage205576101--input654274102-.out +++ /dev/null @@ -1,46 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 500)' and input 3 --level 1 --trace-stack -storage - (Pair "hello" 3) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.357) - [ (Pair 3 "hello" 500) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair 3 "hello" 500) - (Pair 3 "hello" 500) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 500) - (Pair 3 "hello" 500) ] - - location: 11 (just consumed gas: 0) - [ (Pair 3 "hello" 500) ] - - location: 13 (just consumed gas: 0.010) - [ 3 ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 500) - 3 ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 500) - (Pair "hello" 500) - 3 ] - - location: 16 (just consumed gas: 0.010) - [ 500 - (Pair "hello" 500) - 3 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 500) - 3 ] - - location: 18 (just consumed gas: 0.010) - [ "hello" - 3 ] - - location: 19 (just consumed gas: 0.010) - [ (Pair "hello" 3) ] - - location: 20 (just consumed gas: 0.010) - [ {} - (Pair "hello" 3) ] - - location: 22 (just consumed gas: 0.010) - [ (Pair {} "hello" 3) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage224747103--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage224747103--input453441034-.out deleted file mode 100644 index 44c17f6298ef..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage224747103--input453441034-.out +++ /dev/null @@ -1,46 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 0)' and input 1 --level 1 --trace-stack -storage - (Pair "hello" 1) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.357) - [ (Pair 1 "hello" 0) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair 1 "hello" 0) - (Pair 1 "hello" 0) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair 1 "hello" 0) ] - - location: 11 (just consumed gas: 0) - [ (Pair 1 "hello" 0) ] - - location: 13 (just consumed gas: 0.010) - [ 1 ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 0) - 1 ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 0) - (Pair "hello" 0) - 1 ] - - location: 16 (just consumed gas: 0.010) - [ 0 - (Pair "hello" 0) - 1 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 0) - 1 ] - - location: 18 (just consumed gas: 0.010) - [ "hello" - 1 ] - - location: 19 (just consumed gas: 0.010) - [ (Pair "hello" 1) ] - - location: 20 (just consumed gas: 0.010) - [ {} - (Pair "hello" 1) ] - - location: 22 (just consumed gas: 0.010) - [ (Pair {} "hello" 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage611418174--input967284912-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage611418174--input967284912-.out deleted file mode 100644 index e39a580a952e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_cdr--storage611418174--input967284912-.out +++ /dev/null @@ -1,46 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_cdr.tz on storage '(Pair "hello" 7)' and input 100 --level 1 --trace-stack -storage - (Pair "hello" 100) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 10.357) - [ (Pair 100 "hello" 7) ] - - location: 9 (just consumed gas: 0.010) - [ (Pair 100 "hello" 7) - (Pair 100 "hello" 7) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "hello" 7) - (Pair 100 "hello" 7) ] - - location: 11 (just consumed gas: 0) - [ (Pair 100 "hello" 7) ] - - location: 13 (just consumed gas: 0.010) - [ 100 ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "hello" 7) - 100 ] - - location: 15 (just consumed gas: 0.010) - [ (Pair "hello" 7) - (Pair "hello" 7) - 100 ] - - location: 16 (just consumed gas: 0.010) - [ 7 - (Pair "hello" 7) - 100 ] - - location: 17 (just consumed gas: 0.010) - [ (Pair "hello" 7) - 100 ] - - location: 18 (just consumed gas: 0.010) - [ "hello" - 100 ] - - location: 19 (just consumed gas: 0.010) - [ (Pair "hello" 100) ] - - location: 20 (just consumed gas: 0.010) - [ {} - (Pair "hello" 100) ] - - location: 22 (just consumed gas: 0.010) - [ (Pair {} "hello" 100) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input264787654-.out deleted file mode 100644 index f80c70abdd45..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input264787654-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "a" ; "b" ; "c" }' --level 1 --trace-stack -storage - { "a" ; "b" ; "c" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.919) - [ (Pair { "a" ; "b" ; "c" } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { "a" ; "b" ; "c" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "a" ; "b" ; "c" } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { "a" ; "b" ; "c" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input457300675-.out deleted file mode 100644 index 666ab495249f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input457300675-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{}' --level 1 --trace-stack -storage - {} -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.075) - [ (Pair {} {}) ] - - location: 9 (just consumed gas: 0.010) - [ {} ] - - location: 10 (just consumed gas: 0.010) - [ {} - {} ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} {}) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input989507347-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input989507347-.out deleted file mode 100644 index 5f4f6c7c5637..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_id--storage457300675--input989507347-.out +++ /dev/null @@ -1,19 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_id.tz on storage '{}' and input '{ "asdf" ; "bcde" }' --level 1 --trace-stack -storage - { "asdf" ; "bcde" } -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 4.702) - [ (Pair { "asdf" ; "bcde" } {}) ] - - location: 9 (just consumed gas: 0.010) - [ { "asdf" ; "bcde" } ] - - location: 10 (just consumed gas: 0.010) - [ {} - { "asdf" ; "bcde" } ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} { "asdf" ; "bcde" }) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input457300675-.out deleted file mode 100644 index a17a680b2869..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input457300675-.out +++ /dev/null @@ -1,27 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{}' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.702) - [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010) - [ {} ] - - location: 9 (just consumed gas: 0.010) - [ 0 - {} ] - - location: 12 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 13 (just consumed gas: 0) - [ 0 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input701684511-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input701684511-.out deleted file mode 100644 index 678d04fb45ba..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input701684511-.out +++ /dev/null @@ -1,47 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ -100 ; 1 ; 2 ; 3 }' --level 1 --trace-stack -storage - -94 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 7.727) - [ (Pair { -100 ; 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { -100 ; 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010) - [ 0 - { -100 ; 1 ; 2 ; 3 } ] - - location: 12 (just consumed gas: 0.010) - [ { -100 ; 1 ; 2 ; 3 } - 0 ] - - location: 13 (just consumed gas: 0) - [ -100 - 0 ] - - location: 15 (just consumed gas: 0.035) - [ -100 ] - - location: 13 (just consumed gas: 0.015) - [ 1 - -100 ] - - location: 15 (just consumed gas: 0.035) - [ -99 ] - - location: 13 (just consumed gas: 0.015) - [ 2 - -99 ] - - location: 15 (just consumed gas: 0.035) - [ -97 ] - - location: 13 (just consumed gas: 0.015) - [ 3 - -97 ] - - location: 15 (just consumed gas: 0.035) - [ -94 ] - - location: 13 (just consumed gas: 0.015) - [ -94 ] - - location: 16 (just consumed gas: 0.010) - [ {} - -94 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} -94) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input802622031-.out deleted file mode 100644 index aef77d76b1ef..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_iter--storage492856247--input802622031-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_iter.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 6.932) - [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 } ] - - location: 9 (just consumed gas: 0.010) - [ 0 - { 1 } ] - - location: 12 (just consumed gas: 0.010) - [ { 1 } - 0 ] - - location: 13 (just consumed gas: 0) - [ 1 - 0 ] - - location: 15 (just consumed gas: 0.035) - [ 1 ] - - location: 13 (just consumed gas: 0.015) - [ 1 ] - - location: 16 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage495706788--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage495706788--input33757838-.out deleted file mode 100644 index b1f9bc06aeec..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage495706788--input33757838-.out +++ /dev/null @@ -1,61 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair {} None)' and input '"Hi"' --level 1 --trace-stack -storage - (Pair {} (Some False)) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 13.724) - [ (Pair "Hi" {} None) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "Hi" {} None) - (Pair "Hi" {} None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "Hi" {} None) - (Pair "Hi" {} None) - (Pair "Hi" {} None) ] - - location: 13 (just consumed gas: 0.010) - [ "Hi" - (Pair "Hi" {} None) - (Pair "Hi" {} None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "Hi" {} None) - (Pair "Hi" {} None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair {} None) - (Pair "Hi" {} None) ] - - location: 18 (just consumed gas: 0.010) - [ {} - (Pair "Hi" {} None) ] - - location: 14 (just consumed gas: 0.025) - [ "Hi" - {} - (Pair "Hi" {} None) ] - - location: 19 (just consumed gas: 0.117) - [ False - (Pair "Hi" {} None) ] - - location: 20 (just consumed gas: 0.010) - [ (Some False) - (Pair "Hi" {} None) ] - - location: 21 (just consumed gas: 0) - [ (Pair "Hi" {} None) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - - location: 25 (just consumed gas: 0.010) - [ {} ] - - location: 21 (just consumed gas: 0.025) - [ (Some False) - {} ] - - location: 26 (just consumed gas: 0.010) - [ {} - (Some False) ] - - location: 27 (just consumed gas: 0.010) - [ (Pair {} (Some False)) ] - - location: 28 (just consumed gas: 0.010) - [ {} - (Pair {} (Some False)) ] - - location: 30 (just consumed gas: 0.010) - [ (Pair {} {} (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage550087893--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage550087893--input79230375-.out deleted file mode 100644 index 2c5f16d71e06..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage550087893--input79230375-.out +++ /dev/null @@ -1,61 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hello" ; "World" } None)' and input '""' --level 1 --trace-stack -storage - (Pair { "Hello" ; "World" } (Some False)) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 14.357) - [ (Pair "" { "Hello" ; "World" } None) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "" { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "" { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) ] - - location: 13 (just consumed gas: 0.010) - [ "" - (Pair "" { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "" { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair { "Hello" ; "World" } None) - (Pair "" { "Hello" ; "World" } None) ] - - location: 18 (just consumed gas: 0.010) - [ { "Hello" ; "World" } - (Pair "" { "Hello" ; "World" } None) ] - - location: 14 (just consumed gas: 0.025) - [ "" - { "Hello" ; "World" } - (Pair "" { "Hello" ; "World" } None) ] - - location: 19 (just consumed gas: 0.115) - [ False - (Pair "" { "Hello" ; "World" } None) ] - - location: 20 (just consumed gas: 0.010) - [ (Some False) - (Pair "" { "Hello" ; "World" } None) ] - - location: 21 (just consumed gas: 0) - [ (Pair "" { "Hello" ; "World" } None) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair { "Hello" ; "World" } None) ] - - location: 25 (just consumed gas: 0.010) - [ { "Hello" ; "World" } ] - - location: 21 (just consumed gas: 0.025) - [ (Some False) - { "Hello" ; "World" } ] - - location: 26 (just consumed gas: 0.010) - [ { "Hello" ; "World" } - (Some False) ] - - location: 27 (just consumed gas: 0.010) - [ (Pair { "Hello" ; "World" } (Some False)) ] - - location: 28 (just consumed gas: 0.010) - [ {} - (Pair { "Hello" ; "World" } (Some False)) ] - - location: 30 (just consumed gas: 0.010) - [ (Pair {} { "Hello" ; "World" } (Some False)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage605111220--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage605111220--input33757838-.out deleted file mode 100644 index 0480d773985f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_member--storage605111220--input33757838-.out +++ /dev/null @@ -1,61 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_member.tz on storage '(Pair { "Hi" } None)' and input '"Hi"' --level 1 --trace-stack -storage - (Pair { "Hi" } (Some True)) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 13.992) - [ (Pair "Hi" { "Hi" } None) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair "Hi" { "Hi" } None) - (Pair "Hi" { "Hi" } None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "Hi" { "Hi" } None) - (Pair "Hi" { "Hi" } None) - (Pair "Hi" { "Hi" } None) ] - - location: 13 (just consumed gas: 0.010) - [ "Hi" - (Pair "Hi" { "Hi" } None) - (Pair "Hi" { "Hi" } None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "Hi" { "Hi" } None) - (Pair "Hi" { "Hi" } None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair { "Hi" } None) - (Pair "Hi" { "Hi" } None) ] - - location: 18 (just consumed gas: 0.010) - [ { "Hi" } - (Pair "Hi" { "Hi" } None) ] - - location: 14 (just consumed gas: 0.025) - [ "Hi" - { "Hi" } - (Pair "Hi" { "Hi" } None) ] - - location: 19 (just consumed gas: 0.119) - [ True - (Pair "Hi" { "Hi" } None) ] - - location: 20 (just consumed gas: 0.010) - [ (Some True) - (Pair "Hi" { "Hi" } None) ] - - location: 21 (just consumed gas: 0) - [ (Pair "Hi" { "Hi" } None) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair { "Hi" } None) ] - - location: 25 (just consumed gas: 0.010) - [ { "Hi" } ] - - location: 21 (just consumed gas: 0.025) - [ (Some True) - { "Hi" } ] - - location: 26 (just consumed gas: 0.010) - [ { "Hi" } - (Some True) ] - - location: 27 (just consumed gas: 0.010) - [ (Pair { "Hi" } (Some True)) ] - - location: 28 (just consumed gas: 0.010) - [ {} - (Pair { "Hi" } (Some True)) ] - - location: 30 (just consumed gas: 0.010) - [ (Pair {} { "Hi" } (Some True)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input403499055-.out deleted file mode 100644 index 52ab966d2442..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input403499055-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 ; 4 ; 5 ; 6 }' --level 1 --trace-stack -storage - 6 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.950) - [ (Pair { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 ; 4 ; 5 ; 6 } ] - - location: 9 (just consumed gas: 0.010) - [ 6 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 6 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 6) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input457300675-.out deleted file mode 100644 index 4cce512efbf7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input457300675-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{}' --level 1 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.395) - [ (Pair {} 111) ] - - location: 8 (just consumed gas: 0.010) - [ {} ] - - location: 9 (just consumed gas: 0.010) - [ 0 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input469078912-.out deleted file mode 100644 index 789d7fcd69be..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input469078912-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 ; 2 ; 3 }' --level 1 --trace-stack -storage - 3 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.155) - [ (Pair { 1 ; 2 ; 3 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 ; 2 ; 3 } ] - - location: 9 (just consumed gas: 0.010) - [ 3 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 3 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 3) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input802622031-.out deleted file mode 100644 index 1797b8afa9ca..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -set_size--storage492856247--input802622031-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/set_size.tz on storage 111 and input '{ 1 }' --level 1 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.625) - [ (Pair { 1 } 111) ] - - location: 8 (just consumed gas: 0.010) - [ { 1 } ] - - location: 9 (just consumed gas: 0.010) - [ 1 ] - - location: 10 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 1) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sha3--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sha3--storage921624073--input1008262038-.out deleted file mode 100644 index 5ea0fb25143b..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sha3--storage921624073--input1008262038-.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sha3.tz on storage None and input 0x48656c6c6f2c20776f726c6421 --level 1 --trace-stack -storage - (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 5.053) - [ (Pair 0x48656c6c6f2c20776f726c6421 None) ] - - location: 8 (just consumed gas: 0.010) - [ 0x48656c6c6f2c20776f726c6421 ] - - location: 9 (just consumed gas: 1.457) - [ 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722 ] - - location: 10 (just consumed gas: 0.010) - [ (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 11 (just consumed gas: 0.010) - [ {} - (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair {} - (Some 0xf345a219da005ebe9c1a1eaad97bbf38a10c8473e41d0af7fb617caa0c6aa722)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input115382786-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input115382786-.out deleted file mode 100644 index 090b91ad7a27..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input115382786-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 15 2))' --level 1 --trace-stack -storage - (Some 60) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 15 2)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 15 2) ] - - location: 17 (just consumed gas: 0.010) - [ 15 - 2 ] - - location: 18 (just consumed gas: 0) - [ 60 ] - - location: 15 (just consumed gas: 0.015) - [ 60 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 60) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 60) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 60)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input271566295-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input271566295-.out deleted file mode 100644 index 7ff88db20034..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input271566295-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 1))' --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 0 1)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 0 1) ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 1 ] - - location: 21 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.015) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input340971987-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input340971987-.out deleted file mode 100644 index adbefea65607..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input340971987-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 0))' --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 0 0)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 17 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 18 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.015) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input374168553-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input374168553-.out deleted file mode 100644 index 5558a9903467..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input374168553-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 15 2))' --level 1 --trace-stack -storage - (Some 3) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 15 2)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 15 2) ] - - location: 20 (just consumed gas: 0.010) - [ 15 - 2 ] - - location: 21 (just consumed gas: 0) - [ 3 ] - - location: 15 (just consumed gas: 0.015) - [ 3 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 3) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 3) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 3)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input413621582-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input413621582-.out deleted file mode 100644 index fcec77da5d6f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input413621582-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 2))' --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 1 2)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 1 2) ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 2 ] - - location: 21 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.015) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input424849461-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input424849461-.out deleted file mode 100644 index c8cae9bdee0e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input424849461-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 2))' --level 1 --trace-stack -storage - (Some 4) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 1 2)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 1 2) ] - - location: 17 (just consumed gas: 0.010) - [ 1 - 2 ] - - location: 18 (just consumed gas: 0) - [ 4 ] - - location: 15 (just consumed gas: 0.015) - [ 4 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 4) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 4) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 4)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input485030042-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input485030042-.out deleted file mode 100644 index 700f59ae7012..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input485030042-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 8 1))' --level 1 --trace-stack -storage - (Some 16) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 8 1)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 8 1) ] - - location: 17 (just consumed gas: 0.010) - [ 8 - 1 ] - - location: 18 (just consumed gas: 0) - [ 16 ] - - location: 15 (just consumed gas: 0.015) - [ 16 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 16) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 16) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 16)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input705767726-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input705767726-.out deleted file mode 100644 index 965b08500cf0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input705767726-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 8 1))' --level 1 --trace-stack -storage - (Some 4) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 8 1)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 8 1) ] - - location: 20 (just consumed gas: 0.010) - [ 8 - 1 ] - - location: 21 (just consumed gas: 0) - [ 4 ] - - location: 15 (just consumed gas: 0.015) - [ 4 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 4) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 4) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 4)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input769385932-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input769385932-.out deleted file mode 100644 index af42549f0fd0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input769385932-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 0 1))' --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 0 1)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 0 1) ] - - location: 17 (just consumed gas: 0.010) - [ 0 - 1 ] - - location: 18 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.015) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input913715337-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input913715337-.out deleted file mode 100644 index 26e69f7400bf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -shifts--storage921624073--input913715337-.out +++ /dev/null @@ -1,30 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 0 0))' --level 1 --trace-stack -storage - (Some 0) -emitted operations - -big_map diff - -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 0 0)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 21 (just consumed gas: 0) - [ 0 ] - - location: 15 (just consumed gas: 0.015) - [ 0 ] - - location: 22 (just consumed gas: 0.010) - [ (Some 0) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Some 0) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} (Some 0)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage351480851--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage351480851--input65907686-.out deleted file mode 100644 index 3609199c1936..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage351480851--input65907686-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some"FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo"' and input 'Pair 1 10000' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 69.312) - [ (Pair (Pair 1 10000) - (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 10000) - (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo") - (Pair 1 10000) ] - - location: 13 (just consumed gas: 0) - [ "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" - (Pair 1 10000) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 10000) - "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 10000 - "FooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFooFoo" ] - - location: 21 (just consumed gas: 3.025) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input198821575-.out deleted file mode 100644 index b8f89912e1d0..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input198821575-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 1' --level 1 --trace-stack -storage - (Some "o") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 1 1) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 1) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 1 1) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 1 1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 1) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 1 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ (Some "o") ] - - location: 13 (just consumed gas: 0.015) - [ (Some "o") ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some "o") ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some "o")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input359592843-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input359592843-.out deleted file mode 100644 index 493d8a03e596..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input359592843-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 10 5' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 10 5) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 10 5) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 10 5) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 10 5) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 10 5) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 10 - 5 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input551316239-.out deleted file mode 100644 index f7749a3e45d1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input551316239-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 0' --level 1 --trace-stack -storage - (Some "") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 0 0) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 0) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 0 0) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 0 0) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 0 0) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 0 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ (Some "") ] - - location: 13 (just consumed gas: 0.015) - [ (Some "") ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some "") ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some "")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input722749044-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input722749044-.out deleted file mode 100644 index 5ad65aa28c16..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input722749044-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 10' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 0 10) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 10) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 0 10) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 0 10) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 0 10) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 10 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input839234860-.out deleted file mode 100644 index 1c198f59cdaf..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input839234860-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 1 3' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 1 3) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 3) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 1 3) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 1 3) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 3) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 3 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input919180079-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input919180079-.out deleted file mode 100644 index 427db605dfe1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage364922380--input919180079-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage 'Some "Foo"' and input 'Pair 0 2' --level 1 --trace-stack -storage - (Some "Fo") -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.342) - [ (Pair (Pair 0 2) (Some "Foo")) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 2) - (Some "Foo") ] - - location: 11 (just consumed gas: 0.010) - [ (Some "Foo") - (Pair 0 2) ] - - location: 13 (just consumed gas: 0) - [ "Foo" - (Pair 0 2) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 0 2) - "Foo" ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 2 - "Foo" ] - - location: 21 (just consumed gas: 0.026) - [ (Some "Fo") ] - - location: 13 (just consumed gas: 0.015) - [ (Some "Fo") ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some "Fo") ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some "Fo")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage921624073--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage921624073--input551316239-.out deleted file mode 100644 index 7a5d9f677803..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice--storage921624073--input551316239-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice.tz on storage None and input 'Pair 0 0' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.198) - [ (Pair (Pair 0 0) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 0) - None ] - - location: 11 (just consumed gas: 0.010) - [ None - (Pair 0 0) ] - - location: 13 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 15 (just consumed gas: 0.010) - [ ] - - location: 16 (just consumed gas: 0.010) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input198821575-.out deleted file mode 100644 index 14ace2d59809..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input198821575-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 1' --level 1 --trace-stack -storage - (Some 0xbb) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 1 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 1) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 1 1) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 1 1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 1) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 1 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ (Some 0xbb) ] - - location: 13 (just consumed gas: 0.015) - [ (Some 0xbb) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some 0xbb) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0xbb)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input462551352-.out deleted file mode 100644 index f6b7bf898ae1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input462551352-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 1' --level 1 --trace-stack -storage - (Some 0xaa) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 0 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 1) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 0 1) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 0 1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 0 1) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 1 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ (Some 0xaa) ] - - location: 13 (just consumed gas: 0.015) - [ (Some 0xaa) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some 0xaa) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0xaa)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input489157380-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input489157380-.out deleted file mode 100644 index e2863a32525c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input489157380-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 2' --level 1 --trace-stack -storage - (Some 0xbbcc) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 1 2) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 2) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 1 2) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 1 2) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 2) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 2 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ (Some 0xbbcc) ] - - location: 13 (just consumed gas: 0.015) - [ (Some 0xbbcc) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some 0xbbcc) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0xbbcc)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input551316239-.out deleted file mode 100644 index 037eb756a15e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input551316239-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 0 0' --level 1 --trace-stack -storage - (Some 0x) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 0 0) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 0) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 0 0) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 0 0) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 0 0) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 0 - 0 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ (Some 0x) ] - - location: 13 (just consumed gas: 0.015) - [ (Some 0x) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some 0x) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0x)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input669330759-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input669330759-.out deleted file mode 100644 index 5091574c9bfc..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input669330759-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 2' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 2 2) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 2 2) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 2 2) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 2 2) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 2 2) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 2 - 2 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input743596105-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input743596105-.out deleted file mode 100644 index cde8d31d5764..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input743596105-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 2 1' --level 1 --trace-stack -storage - (Some 0xcc) -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 2 1) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 2 1) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 2 1) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 2 1) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 2 1) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 2 - 1 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ (Some 0xcc) ] - - location: 13 (just consumed gas: 0.015) - [ (Some 0xcc) ] - - location: 22 (just consumed gas: 0.010) - [ {} - (Some 0xcc) ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} (Some 0xcc)) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input839234860-.out deleted file mode 100644 index dcd887ec6f1f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage229749865--input839234860-.out +++ /dev/null @@ -1,37 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbcc' and input 'Pair 1 3' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 1 3) (Some 0xaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 3) - (Some 0xaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbcc) - (Pair 1 3) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbcc - (Pair 1 3) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 3) - 0xaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 3 - 0xaabbcc ] - - location: 21 (just consumed gas: 0.026) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage504917929--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage504917929--input65907686-.out deleted file mode 100644 index e26c5c87b077..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage504917929--input65907686-.out +++ /dev/null @@ -1,38 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage 'Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc' and input 'Pair 1 10000' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.298) - [ (Pair (Pair 1 10000) - (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc)) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 10000) - (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) ] - - location: 11 (just consumed gas: 0.010) - [ (Some 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc) - (Pair 1 10000) ] - - location: 13 (just consumed gas: 0) - [ 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc - (Pair 1 10000) ] - - location: 19 (just consumed gas: 0.010) - [ (Pair 1 10000) - 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 10000 - 0xaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbccaabbcc ] - - location: 21 (just consumed gas: 3.025) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage921624073--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage921624073--input462551352-.out deleted file mode 100644 index 1715e2fd9b2c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -slice_bytes--storage921624073--input462551352-.out +++ /dev/null @@ -1,31 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/slice_bytes.tz on storage None and input 'Pair 0 1' --level 1 --trace-stack -storage - None -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 9.198) - [ (Pair (Pair 0 1) None) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 0 1) - None ] - - location: 11 (just consumed gas: 0.010) - [ None - (Pair 0 1) ] - - location: 13 (just consumed gas: 0) - [ (Pair 0 1) ] - - location: 15 (just consumed gas: 0.010) - [ ] - - location: 16 (just consumed gas: 0.010) - [ None ] - - location: 13 (just consumed gas: 0.015) - [ None ] - - location: 22 (just consumed gas: 0.010) - [ {} - None ] - - location: 24 (just consumed gas: 0.010) - [ (Pair {} None) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input1016369050-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input1016369050-.out deleted file mode 100644 index 679aa054e2f8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input1016369050-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"abcd"' --level 1 --trace-stack -storage - (Some "abcd") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.554) - [ (Pair "abcd" None) ] - - location: 8 (just consumed gas: 0.010) - [ "abcd" ] - - location: 9 (just consumed gas: 0.010) - [ (Some "abcd") ] - - location: 10 (just consumed gas: 0.010) - [ {} - (Some "abcd") ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} (Some "abcd")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input93477117-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input93477117-.out deleted file mode 100644 index ea2890027964..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -str_id--storage921624073--input93477117-.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/str_id.tz on storage None and input '"Hello"' --level 1 --trace-stack -storage - (Some "Hello") -emitted operations - -big_map diff - -trace - - location: 8 (just consumed gas: 4.564) - [ (Pair "Hello" None) ] - - location: 8 (just consumed gas: 0.010) - [ "Hello" ] - - location: 9 (just consumed gas: 0.010) - [ (Some "Hello") ] - - location: 10 (just consumed gas: 0.010) - [ {} - (Some "Hello") ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} (Some "Hello")) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out deleted file mode 100644 index 052460b739d8..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 100)' --level 1 --trace-stack -storage - "1970-01-01T00:00:00Z" -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:01:40Z" 100) "1970-01-01T00:01:51Z") ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 100) - (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" - (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:01:40Z" 100) ] - - location: 14 (just consumed gas: 0.010) - [ 100 ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:01:40Z" - 100 ] - - location: 15 (just consumed gas: 0.035) - [ "1970-01-01T00:00:00Z" ] - - location: 16 (just consumed gas: 0.010) - [ {} - "1970-01-01T00:00:00Z" ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} "1970-01-01T00:00:00Z") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out deleted file mode 100644 index fb7478b83b43..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 -100)' --level 1 --trace-stack -storage - "1970-01-01T00:03:20Z" -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:01:40Z" -100) "1970-01-01T00:01:51Z") ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" -100) - (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" - (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:01:40Z" -100) ] - - location: 14 (just consumed gas: 0.010) - [ -100 ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:01:40Z" - -100 ] - - location: 15 (just consumed gas: 0.035) - [ "1970-01-01T00:03:20Z" ] - - location: 16 (just consumed gas: 0.010) - [ {} - "1970-01-01T00:03:20Z" ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} "1970-01-01T00:03:20Z") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out deleted file mode 100644 index e7815a436e4a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out +++ /dev/null @@ -1,34 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/sub_timestamp_delta.tz on storage 111 and input '(Pair 100 2000000000000000000)' --level 1 --trace-stack -storage - -1999999999999999900 -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 7.437) - [ (Pair (Pair "1970-01-01T00:01:40Z" 2000000000000000000) "1970-01-01T00:01:51Z") ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) - (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 11 (just consumed gas: 0.010) - [ "1970-01-01T00:01:40Z" - (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 12 (just consumed gas: 0) - [ (Pair "1970-01-01T00:01:40Z" 2000000000000000000) ] - - location: 14 (just consumed gas: 0.010) - [ 2000000000000000000 ] - - location: 12 (just consumed gas: 0.025) - [ "1970-01-01T00:01:40Z" - 2000000000000000000 ] - - location: 15 (just consumed gas: 0.039) - [ -1999999999999999900 ] - - location: 16 (just consumed gas: 0.010) - [ {} - -1999999999999999900 ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} -1999999999999999900) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input706350605-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input706350605-.out deleted file mode 100644 index bdb6ebd1bea5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input706350605-.out +++ /dev/null @@ -1,71 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2310000 1010000)' --level 1 --trace-stack -storage - (Some (Pair 3320000 1300000)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 16.995) - [ (Pair (Pair 2310000 1010000) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair 2310000 1010000) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair 2310000 1010000) - (Pair 2310000 1010000) ] - - location: 14 (just consumed gas: 0.010) - [ (Pair 2310000 1010000) - (Pair 2310000 1010000) - (Pair 2310000 1010000) ] - - location: 15 (just consumed gas: 0.010) - [ 2310000 - (Pair 2310000 1010000) - (Pair 2310000 1010000) ] - - location: 16 (just consumed gas: 0) - [ (Pair 2310000 1010000) - (Pair 2310000 1010000) ] - - location: 18 (just consumed gas: 0.010) - [ 1010000 - (Pair 2310000 1010000) ] - - location: 16 (just consumed gas: 0.025) - [ 2310000 - 1010000 - (Pair 2310000 1010000) ] - - location: 19 (just consumed gas: 0.020) - [ 3320000 - (Pair 2310000 1010000) ] - - location: 20 (just consumed gas: 0) - [ (Pair 2310000 1010000) ] - - location: 22 (just consumed gas: 0.010) - [ (Pair 2310000 1010000) - (Pair 2310000 1010000) ] - - location: 23 (just consumed gas: 0.010) - [ 2310000 - (Pair 2310000 1010000) ] - - location: 24 (just consumed gas: 0) - [ (Pair 2310000 1010000) ] - - location: 26 (just consumed gas: 0.010) - [ 1010000 ] - - location: 24 (just consumed gas: 0.025) - [ 2310000 - 1010000 ] - - location: 27 (just consumed gas: 0.015) - [ (Some 1300000) ] - - location: 29 (just consumed gas: 0) - [ 1300000 ] - - location: 29 (just consumed gas: 0.015) - [ 1300000 ] - - location: 20 (just consumed gas: 0.025) - [ 3320000 - 1300000 ] - - location: 35 (just consumed gas: 0.010) - [ (Pair 3320000 1300000) ] - - location: 36 (just consumed gas: 0.010) - [ (Some (Pair 3320000 1300000)) ] - - location: 37 (just consumed gas: 0.010) - [ {} - (Some (Pair 3320000 1300000)) ] - - location: 39 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair 3320000 1300000))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input856198194-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input856198194-.out deleted file mode 100644 index 28d289219cf7..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -tez_add_sub--storage921624073--input856198194-.out +++ /dev/null @@ -1,71 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/tez_add_sub.tz on storage None and input '(Pair 2000000 1000000)' --level 1 --trace-stack -storage - (Some (Pair 3000000 1000000)) -emitted operations - -big_map diff - -trace - - location: 12 (just consumed gas: 16.995) - [ (Pair (Pair 2000000 1000000) None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair 2000000 1000000) ] - - location: 13 (just consumed gas: 0.010) - [ (Pair 2000000 1000000) - (Pair 2000000 1000000) ] - - location: 14 (just consumed gas: 0.010) - [ (Pair 2000000 1000000) - (Pair 2000000 1000000) - (Pair 2000000 1000000) ] - - location: 15 (just consumed gas: 0.010) - [ 2000000 - (Pair 2000000 1000000) - (Pair 2000000 1000000) ] - - location: 16 (just consumed gas: 0) - [ (Pair 2000000 1000000) - (Pair 2000000 1000000) ] - - location: 18 (just consumed gas: 0.010) - [ 1000000 - (Pair 2000000 1000000) ] - - location: 16 (just consumed gas: 0.025) - [ 2000000 - 1000000 - (Pair 2000000 1000000) ] - - location: 19 (just consumed gas: 0.020) - [ 3000000 - (Pair 2000000 1000000) ] - - location: 20 (just consumed gas: 0) - [ (Pair 2000000 1000000) ] - - location: 22 (just consumed gas: 0.010) - [ (Pair 2000000 1000000) - (Pair 2000000 1000000) ] - - location: 23 (just consumed gas: 0.010) - [ 2000000 - (Pair 2000000 1000000) ] - - location: 24 (just consumed gas: 0) - [ (Pair 2000000 1000000) ] - - location: 26 (just consumed gas: 0.010) - [ 1000000 ] - - location: 24 (just consumed gas: 0.025) - [ 2000000 - 1000000 ] - - location: 27 (just consumed gas: 0.015) - [ (Some 1000000) ] - - location: 29 (just consumed gas: 0) - [ 1000000 ] - - location: 29 (just consumed gas: 0.015) - [ 1000000 ] - - location: 20 (just consumed gas: 0.025) - [ 3000000 - 1000000 ] - - location: 35 (just consumed gas: 0.010) - [ (Pair 3000000 1000000) ] - - location: 36 (just consumed gas: 0.010) - [ (Some (Pair 3000000 1000000)) ] - - location: 37 (just consumed gas: 0.010) - [ {} - (Some (Pair 3000000 1000000)) ] - - location: 39 (just consumed gas: 0.010) - [ (Pair {} (Some (Pair 3000000 1000000))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -uncomb--storage680650890--input394061083-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -uncomb--storage680650890--input394061083-.out deleted file mode 100644 index 6c3e30035886..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -uncomb--storage680650890--input394061083-.out +++ /dev/null @@ -1,50 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/uncomb.tz on storage 0 and input '(Pair 1 4 2)' --level 1 --trace-stack -storage - 142 -emitted operations - -big_map diff - -trace - - location: 10 (just consumed gas: 10.144) - [ (Pair (Pair 1 4 2) 0) ] - - location: 10 (just consumed gas: 0.010) - [ (Pair 1 4 2) ] - - location: 11 (just consumed gas: 0.037) - [ 1 - 4 - 2 ] - - location: 13 (just consumed gas: 0.010) - [ 100 - 1 - 4 - 2 ] - - location: 16 (just consumed gas: 0.059) - [ 100 - 4 - 2 ] - - location: 17 (just consumed gas: 0.010) - [ 4 - 100 - 2 ] - - location: 18 (just consumed gas: 0.010) - [ 10 - 4 - 100 - 2 ] - - location: 21 (just consumed gas: 0.059) - [ 40 - 100 - 2 ] - - location: 22 (just consumed gas: 0.035) - [ 140 - 2 ] - - location: 23 (just consumed gas: 0.035) - [ 142 ] - - location: 24 (just consumed gas: 0.010) - [ {} - 142 ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} 142) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -unpair--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -unpair--storage125992234--input125992234-.out deleted file mode 100644 index 0f44418c50da..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -unpair--storage125992234--input125992234-.out +++ /dev/null @@ -1,462 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/unpair.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 127.791) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ Unit ] - - location: 9 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 10 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 11 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 12 (just consumed gas: 0.035) - [ ] - - location: 14 (just consumed gas: 0.010) - [ Unit ] - - location: 15 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 16 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 17 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 18 (just consumed gas: 0.035) - [ ] - - location: 20 (just consumed gas: 0.010) - [ Unit ] - - location: 21 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 22 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 23 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 24 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 25 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 27 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 28 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 29 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 32 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 33 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 35 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 36 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 37 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 39 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 40 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 41 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 43 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 44 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 45 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 47 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 48 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 49 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 51 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 52 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 53 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 55 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 56 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 57 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 59 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 60 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 61 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 63 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 64 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 65 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 67 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 68 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 69 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 71 (just consumed gas: 0.010) - [ ] - - location: 72 (just consumed gas: 0.010) - [ Unit ] - - location: 73 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 74 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 75 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 76 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 77 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 79 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 80 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 81 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 83 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 84 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 85 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 87 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 88 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 89 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 91 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 92 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 93 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 95 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 96 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 97 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 99 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 100 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 101 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 103 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 104 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 105 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 107 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 108 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 109 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 111 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 112 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 113 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 115 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 116 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 117 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 119 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 120 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 121 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 123 (just consumed gas: 0.010) - [ ] - - location: 124 (just consumed gas: 0.010) - [ Unit ] - - location: 125 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 126 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 127 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 128 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 129 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 131 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 132 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 133 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 135 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 136 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 137 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 139 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 140 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 141 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 143 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 144 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 145 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 147 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 148 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 149 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 151 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 152 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 153 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 155 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 156 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 157 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 159 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 160 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 161 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 163 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 164 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 165 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 167 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 168 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 169 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 171 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 172 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 173 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 175 (just consumed gas: 0.010) - [ ] - - location: 176 (just consumed gas: 0.010) - [ Unit ] - - location: 177 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 178 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 179 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 180 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 181 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 183 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 184 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 185 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 187 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 188 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 189 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 191 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 192 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 193 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 195 (just consumed gas: 0.010) - [ (Pair Unit Unit) - (Pair Unit Unit) ] - - location: 196 (just consumed gas: 0.010) - [ Unit - Unit - (Pair Unit Unit) ] - - location: 197 (just consumed gas: 0.035) - [ (Pair Unit Unit) ] - - location: 199 (just consumed gas: 0.010) - [ ] - - location: 200 (just consumed gas: 0.010) - [ Unit ] - - location: 201 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 202 (just consumed gas: 0.010) - [ (Pair Unit Unit) ] - - location: 203 (just consumed gas: 0.010) - [ Unit - Unit ] - - location: 204 (just consumed gas: 0.035) - [ ] - - location: 206 (just consumed gas: 0.010) - [ Unit ] - - location: 207 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 209 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -voting_power--storage1011138251--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -voting_power--storage1011138251--input1040351577-.out deleted file mode 100644 index 9f2a743371dd..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -voting_power--storage1011138251--input1040351577-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/voting_power.tz on storage '(Pair 0 0)' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --level 1 --trace-stack -storage - (Pair 4000000000000 20000000000000) -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 332.347) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" 0 0) ] - - location: 9 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" ] - - location: 10 (just consumed gas: 0.605) - [ "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ] - - location: 11 (just consumed gas: 220.656) - [ 4000000000000 ] - - location: 12 (just consumed gas: 0) - [ ] - - location: 14 (just consumed gas: 210.466) - [ 20000000000000 ] - - location: 12 (just consumed gas: 0.025) - [ 4000000000000 - 20000000000000 ] - - location: 15 (just consumed gas: 0.010) - [ (Pair 4000000000000 20000000000000) ] - - location: 16 (just consumed gas: 0.010) - [ {} - (Pair 4000000000000 20000000000000) ] - - location: 18 (just consumed gas: 0.010) - [ (Pair {} 4000000000000 20000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1058477720-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1058477720-.out deleted file mode 100644 index 52af586b140e..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1058477720-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False False)' --level 1 --trace-stack -storage - (Some (Left False)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Left (Pair False False)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Left (Pair False False)) ] - - location: 17 (just consumed gas: 0) - [ (Pair False False) ] - - location: 19 (just consumed gas: 0.010) - [ False - False ] - - location: 20 (just consumed gas: 0.015) - [ False ] - - location: 21 (just consumed gas: 0.010) - [ (Left False) ] - - location: 17 (just consumed gas: 0.015) - [ (Left False) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Left False)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Left False)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Left False))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1073176155-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1073176155-.out deleted file mode 100644 index 2dab115ec02d..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input1073176155-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 0)' --level 1 --trace-stack -storage - (Some (Right 0)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 0 0)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 0 0) ] - - location: 24 (just consumed gas: 0.010) - [ 0 - 0 ] - - location: 25 (just consumed gas: 0.035) - [ 0 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 0) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 0) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 0)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 0)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 0))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input246594902-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input246594902-.out deleted file mode 100644 index 204baef30fc1..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input246594902-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True False)' --level 1 --trace-stack -storage - (Some (Left True)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Left (Pair True False)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Left (Pair True False)) ] - - location: 17 (just consumed gas: 0) - [ (Pair True False) ] - - location: 19 (just consumed gas: 0.010) - [ True - False ] - - location: 20 (just consumed gas: 0.015) - [ True ] - - location: 21 (just consumed gas: 0.010) - [ (Left True) ] - - location: 17 (just consumed gas: 0.015) - [ (Left True) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Left True)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Left True)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Left True))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input506603577-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input506603577-.out deleted file mode 100644 index bd80e117e01a..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input506603577-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 1)' --level 1 --trace-stack -storage - (Some (Right 0)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 1 1)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 1 1) ] - - location: 24 (just consumed gas: 0.010) - [ 1 - 1 ] - - location: 25 (just consumed gas: 0.035) - [ 0 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 0) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 0) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 0)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 0)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 0))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input576248088-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input576248088-.out deleted file mode 100644 index 6a8b00b01bfb..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input576248088-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 0 1)' --level 1 --trace-stack -storage - (Some (Right 1)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 0 1)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 0 1) ] - - location: 24 (just consumed gas: 0.010) - [ 0 - 1 ] - - location: 25 (just consumed gas: 0.035) - [ 1 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 1) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 1) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 1)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 1)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 1))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input612012282-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input612012282-.out deleted file mode 100644 index d8524c4508c3..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input612012282-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 21)' --level 1 --trace-stack -storage - (Some (Right 63)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 42 21)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 42 21) ] - - location: 24 (just consumed gas: 0.010) - [ 42 - 21 ] - - location: 25 (just consumed gas: 0.035) - [ 63 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 63) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 63) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 63)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 63)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 63))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input617591686-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input617591686-.out deleted file mode 100644 index 8b1df46f2986..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input617591686-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair False True)' --level 1 --trace-stack -storage - (Some (Left True)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Left (Pair False True)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Left (Pair False True)) ] - - location: 17 (just consumed gas: 0) - [ (Pair False True) ] - - location: 19 (just consumed gas: 0.010) - [ False - True ] - - location: 20 (just consumed gas: 0.015) - [ True ] - - location: 21 (just consumed gas: 0.010) - [ (Left True) ] - - location: 17 (just consumed gas: 0.015) - [ (Left True) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Left True)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Left True)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Left True))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input639311176-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input639311176-.out deleted file mode 100644 index 31de173a2e54..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input639311176-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Left (Pair True True)' --level 1 --trace-stack -storage - (Some (Left False)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Left (Pair True True)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Left (Pair True True)) ] - - location: 17 (just consumed gas: 0) - [ (Pair True True) ] - - location: 19 (just consumed gas: 0.010) - [ True - True ] - - location: 20 (just consumed gas: 0.015) - [ False ] - - location: 21 (just consumed gas: 0.010) - [ (Left False) ] - - location: 17 (just consumed gas: 0.015) - [ (Left False) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Left False)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Left False)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Left False))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input688315180-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input688315180-.out deleted file mode 100644 index 8f46a90314d6..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input688315180-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 42 63)' --level 1 --trace-stack -storage - (Some (Right 21)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 42 63)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 42 63) ] - - location: 24 (just consumed gas: 0.010) - [ 42 - 63 ] - - location: 25 (just consumed gas: 0.035) - [ 21 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 21) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 21) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 21)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 21)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 21))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input967929605-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input967929605-.out deleted file mode 100644 index e330277016af..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor--storage921624073--input967929605-.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor.tz on storage None and input 'Right (Pair 1 0)' --level 1 --trace-stack -storage - (Some (Right 1)) -emitted operations - -big_map diff - -trace - - location: 16 (just consumed gas: 11.026) - [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (just consumed gas: 0.010) - [ (Right (Pair 1 0)) ] - - location: 17 (just consumed gas: 0) - [ (Pair 1 0) ] - - location: 24 (just consumed gas: 0.010) - [ 1 - 0 ] - - location: 25 (just consumed gas: 0.035) - [ 1 ] - - location: 26 (just consumed gas: 0.010) - [ (Right 1) ] - - location: 17 (just consumed gas: 0.015) - [ (Right 1) ] - - location: 28 (just consumed gas: 0.010) - [ (Some (Right 1)) ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Some (Right 1)) ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} (Some (Right 1))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor_bytes--storage125992234--input125992234-.out deleted file mode 100644 index cd1cb7ab03a9..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- opcodes -xor_bytes--storage125992234--input125992234-.out +++ /dev/null @@ -1,75 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/xor_bytes_016.tz on storage Unit and input Unit --level 1 --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 28.329) - [ (Pair Unit Unit) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0x05 ] - - location: 11 (just consumed gas: 0.010) - [ 0x06 - 0x05 ] - - location: 14 (just consumed gas: 0.040) - [ 0x03 ] - - location: 15 (just consumed gas: 0.010) - [ 0x03 - 0x03 ] - - location: 20 (just consumed gas: 0.035) - [ 0 ] - - location: 21 (just consumed gas: 0.010) - [ True ] - - location: 22 (just consumed gas: 0) - [ ] - - location: 22 (just consumed gas: 0.015) - [ ] - - location: 28 (just consumed gas: 0.010) - [ 0x0005 ] - - location: 31 (just consumed gas: 0.010) - [ 0x0106 - 0x0005 ] - - location: 34 (just consumed gas: 0.041) - [ 0x0103 ] - - location: 35 (just consumed gas: 0.010) - [ 0x0103 - 0x0103 ] - - location: 40 (just consumed gas: 0.035) - [ 0 ] - - location: 41 (just consumed gas: 0.010) - [ True ] - - location: 42 (just consumed gas: 0) - [ ] - - location: 42 (just consumed gas: 0.015) - [ ] - - location: 48 (just consumed gas: 0.010) - [ 0x05 ] - - location: 51 (just consumed gas: 0.010) - [ 0x0106 - 0x05 ] - - location: 54 (just consumed gas: 0.041) - [ 0x0103 ] - - location: 55 (just consumed gas: 0.010) - [ 0x0103 - 0x0103 ] - - location: 60 (just consumed gas: 0.035) - [ 0 ] - - location: 61 (just consumed gas: 0.010) - [ True ] - - location: 62 (just consumed gas: 0) - [ ] - - location: 62 (just consumed gas: 0.015) - [ ] - - location: 68 (just consumed gas: 0.010) - [ Unit ] - - location: 69 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 71 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- BALANCE.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- BALANCE.out deleted file mode 100644 index 3c08f747989c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- BALANCE.out +++ /dev/null @@ -1,147 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 0 --trace-stack -storage - 0 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 0 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 0 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 0) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 0.000001 --trace-stack -storage - 1 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 1 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 1 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 1) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 0.5 --trace-stack -storage - 500000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 500000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 500000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 500000) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 1 --trace-stack -storage - 1000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 1000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 1000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 1000000) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 5 --trace-stack -storage - 5000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 5000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 5000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 5000000) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 1000 --trace-stack -storage - 1000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 1000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 1000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 1000000000) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/balance.tz on storage 0 and input Unit --balance 8000000 --trace-stack -storage - 8000000000000 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 0) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 8000000000000 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 8000000000000 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 8000000000000) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- LEVEL.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- LEVEL.out deleted file mode 100644 index 339ed66cc97f..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- LEVEL.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/level.tz on storage 9999999 and input Unit --level 10 --trace-stack -storage - 10 -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.267) - [ (Pair Unit 9999999) ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ 10 ] - - location: 9 (just consumed gas: 0.010) - [ {} - 10 ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} 10) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- NOW.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- NOW.out deleted file mode 100644 index bad3f4a1a051..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- NOW.out +++ /dev/null @@ -1,21 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_now.tz on storage '"2017-07-13T09:19:01Z"' and input Unit --trace-stack --now 2021-10-13T10:16:52Z -storage - "2021-10-13T10:16:52Z" -emitted operations - -big_map diff - -trace - - location: 7 (just consumed gas: 4.375) - [ (Pair Unit "2017-07-13T09:19:01Z") ] - - location: 7 (just consumed gas: 0.010) - [ ] - - location: 8 (just consumed gas: 0.010) - [ "2021-10-13T10:16:52Z" ] - - location: 9 (just consumed gas: 0.010) - [ {} - "2021-10-13T10:16:52Z" ] - - location: 11 (just consumed gas: 0.010) - [ (Pair {} "2021-10-13T10:16:52Z") ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- arithmetic_overflow.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- arithmetic_overflow.out deleted file mode 100644 index 3876a5bc8106..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- arithmetic_overflow.out +++ /dev/null @@ -1,224 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 1 257))' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or (pair nat nat) (pair nat nat)); - 02: storage (option nat); - 03: # this contract takes either (Left a b) and stores (a << b) - 04: # or (Right a b) and stores (a >> b). - 05: # i.e., in the first case, the first component shifted to the left by - 06: # the second, and the second case, component shifted to the right by - 07: # the second. - 08: code { CAR; - 09: IF_LEFT { - 10: UNPAIR; LSL; - 11: } - 12: { - 13: UNPAIR; LSR; - 14: }; - 15: SOME; - 16: NIL operation; - 17: PAIR; - 18: }; - 19: -At line 10 characters 25 to 28, -unexpected arithmetic overflow -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 1 257)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 1 257)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 1 257) ] - - location: 17 (just consumed gas: 0.010) - [ 1 - 257 ] -Fatal error: - error running script - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Left (Pair 123 257))' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or (pair nat nat) (pair nat nat)); - 02: storage (option nat); - 03: # this contract takes either (Left a b) and stores (a << b) - 04: # or (Right a b) and stores (a >> b). - 05: # i.e., in the first case, the first component shifted to the left by - 06: # the second, and the second case, component shifted to the right by - 07: # the second. - 08: code { CAR; - 09: IF_LEFT { - 10: UNPAIR; LSL; - 11: } - 12: { - 13: UNPAIR; LSR; - 14: }; - 15: SOME; - 16: NIL operation; - 17: PAIR; - 18: }; - 19: -At line 10 characters 25 to 28, -unexpected arithmetic overflow -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Left (Pair 123 257)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Left (Pair 123 257)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 123 257) ] - - location: 17 (just consumed gas: 0.010) - [ 123 - 257 ] -Fatal error: - error running script - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 1 257))' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or (pair nat nat) (pair nat nat)); - 02: storage (option nat); - 03: # this contract takes either (Left a b) and stores (a << b) - 04: # or (Right a b) and stores (a >> b). - 05: # i.e., in the first case, the first component shifted to the left by - 06: # the second, and the second case, component shifted to the right by - 07: # the second. - 08: code { CAR; - 09: IF_LEFT { - 10: UNPAIR; LSL; - 11: } - 12: { - 13: UNPAIR; LSR; - 14: }; - 15: SOME; - 16: NIL operation; - 17: PAIR; - 18: }; - 19: -At line 13 characters 25 to 28, -unexpected arithmetic overflow -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 1 257)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 1 257)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 1 257) ] - - location: 20 (just consumed gas: 0.010) - [ 1 - 257 ] -Fatal error: - error running script - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/shifts.tz on storage None and input '(Right (Pair 123 257))' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or (pair nat nat) (pair nat nat)); - 02: storage (option nat); - 03: # this contract takes either (Left a b) and stores (a << b) - 04: # or (Right a b) and stores (a >> b). - 05: # i.e., in the first case, the first component shifted to the left by - 06: # the second, and the second case, component shifted to the right by - 07: # the second. - 08: code { CAR; - 09: IF_LEFT { - 10: UNPAIR; LSL; - 11: } - 12: { - 13: UNPAIR; LSR; - 14: }; - 15: SOME; - 16: NIL operation; - 17: PAIR; - 18: }; - 19: -At line 13 characters 25 to 28, -unexpected arithmetic overflow -trace - - location: 14 (just consumed gas: 8.811) - [ (Pair (Right (Pair 123 257)) None) ] - - location: 14 (just consumed gas: 0.010) - [ (Right (Pair 123 257)) ] - - location: 15 (just consumed gas: 0) - [ (Pair 123 257) ] - - location: 20 (just consumed gas: 0.010) - [ 123 - 257 ] -Fatal error: - error running script - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_overflow.tz on storage Unit and input 'Left Unit' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or unit unit) ; - 02: storage unit ; - 03: code { CAR ; - 04: IF_LEFT - 05: { - 06: PUSH nat 922337203685477580700 ; - 07: PUSH mutez 10 ; - 08: MUL ; # FAILURE - 09: DROP - 10: } - 11: { - 12: PUSH mutez 10 ; - 13: PUSH nat 922337203685477580700 ; - 14: MUL ; # FAILURE - 15: DROP - 16: } ; - 17: - 18: NIL operation ; PAIR } - 19: -At line 8 characters 11 to 14, -unexpected arithmetic overflow -trace - - location: 9 (just consumed gas: 11.246) - [ (Pair (Left Unit) Unit) ] - - location: 9 (just consumed gas: 0.010) - [ (Left Unit) ] - - location: 10 (just consumed gas: 0) - [ Unit ] - - location: 12 (just consumed gas: 0.010) - [ 922337203685477580700 - Unit ] - - location: 15 (just consumed gas: 0.010) - [ 10 - 922337203685477580700 - Unit ] -Fatal error: - error running script - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_overflow.tz on storage Unit and input 'Right Unit' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter (or unit unit) ; - 02: storage unit ; - 03: code { CAR ; - 04: IF_LEFT - 05: { - 06: PUSH nat 922337203685477580700 ; - 07: PUSH mutez 10 ; - 08: MUL ; # FAILURE - 09: DROP - 10: } - 11: { - 12: PUSH mutez 10 ; - 13: PUSH nat 922337203685477580700 ; - 14: MUL ; # FAILURE - 15: DROP - 16: } ; - 17: - 18: NIL operation ; PAIR } - 19: -At line 14 characters 11 to 14, -unexpected arithmetic overflow -trace - - location: 9 (just consumed gas: 11.246) - [ (Pair (Right Unit) Unit) ] - - location: 9 (just consumed gas: 0.010) - [ (Right Unit) ] - - location: 10 (just consumed gas: 0) - [ Unit ] - - location: 21 (just consumed gas: 0.010) - [ 10 - Unit ] - - location: 24 (just consumed gas: 0.010) - [ 922337203685477580700 - 10 - Unit ] -Fatal error: - error running script diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- big_map_contract_io.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- big_map_contract_io.out deleted file mode 100644 index a3c2b8fc908c..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- big_map_contract_io.out +++ /dev/null @@ -1,1088 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_big_map_value.tz on storage '(Pair { Elt "hello" "hi" } None)' and input '"hello"' --trace-stack -storage - (Pair 4 (Some "hi")) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["hello"] to "hi" -trace - - location: 12 (just consumed gas: 12.614) - [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "hello" { Elt "hello" "hi" } None) - (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "hello" { Elt "hello" "hi" } None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.756) - [ (Some "hi") - { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - (Some "hi") ] - - location: 22 (just consumed gas: 0.010) - [ (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Pair { Elt "hello" "hi" } (Some "hi")) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} { Elt "hello" "hi" } (Some "hi")) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_big_map_value.tz on storage '(Pair { Elt "hello" "hi" } None)' and input '""' --trace-stack -storage - (Pair 4 None) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["hello"] to "hi" -trace - - location: 12 (just consumed gas: 12.564) - [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "" { Elt "hello" "hi" } None) - (Pair "" { Elt "hello" "hi" } None) ] - - location: 13 (just consumed gas: 0.010) - [ "" - (Pair "" { Elt "hello" "hi" } None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "" { Elt "hello" "hi" } None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair { Elt "hello" "hi" } None) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 14 (just consumed gas: 0.025) - [ "" - { Elt "hello" "hi" } - { Elt "hello" "hi" } ] - - location: 20 (just consumed gas: 0.700) - [ None - { Elt "hello" "hi" } ] - - location: 21 (just consumed gas: 0.010) - [ { Elt "hello" "hi" } - None ] - - location: 22 (just consumed gas: 0.010) - [ (Pair { Elt "hello" "hi" } None) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Pair { Elt "hello" "hi" } None) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} { Elt "hello" "hi" } None) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_big_map_value.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } None)' and input '"1"' --trace-stack -storage - (Pair 4 (Some "one")) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Set map(4)["1"] to "one" -trace - - location: 12 (just consumed gas: 13.526) - [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) - (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 13 (just consumed gas: 0.010) - [ "1" - (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 14 (just consumed gas: 0) - [ (Pair "1" { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 17 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } None) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } ] - - location: 19 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 14 (just consumed gas: 0.025) - [ "1" - { Elt "1" "one" ; Elt "2" "two" } - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 20 (just consumed gas: 0.712) - [ (Some "one") - { Elt "1" "one" ; Elt "2" "two" } ] - - location: 21 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - (Some "one") ] - - location: 22 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 23 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - location: 25 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } (Some "one")) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{}' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Set map(4)["1"] to "one" -trace - - location: 15 (just consumed gas: 12.065) - [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ {} - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{ Elt "1" (Some "two") }' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Set map(4)["1"] to "two" -trace - - location: 15 (just consumed gas: 12.515) - [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "1" (Some "two") } - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ { Elt "1" (Some "two") } - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ (Pair "1" (Some "two")) - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 21 (just consumed gas: 0.010) - [ "1" - (Some "two") - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 22 (just consumed gas: 0.727) - [ { Elt "1" "two" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0.015) - [ { Elt "1" "two" ; Elt "2" "two" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{ Elt "3" (Some "three") }' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Set map(4)["3"] to "three" - Set map(4)["1"] to "one" -trace - - location: 15 (just consumed gas: 12.535) - [ (Pair { Elt "3" (Some "three") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "3" (Some "three") } - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ { Elt "3" (Some "three") } - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ (Pair "3" (Some "three")) - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 21 (just consumed gas: 0.010) - [ "3" - (Some "three") - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 22 (just consumed gas: 0.727) - [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } - Unit ] - - location: 19 (just consumed gas: 0.015) - [ { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "one" ; Elt "2" "two" ; Elt "3" "three" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{ Elt "3" None }' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Unset map(4)["3"] - Set map(4)["1"] to "one" -trace - - location: 15 (just consumed gas: 12.371) - [ (Pair { Elt "3" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "3" None } - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ { Elt "3" None } - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ (Pair "3" None) - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 21 (just consumed gas: 0.010) - [ "3" - None - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 22 (just consumed gas: 0.727) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0.015) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{ Elt "2" None }' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Unset map(4)["2"] - Set map(4)["1"] to "one" -trace - - location: 15 (just consumed gas: 12.371) - [ (Pair { Elt "2" None } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "2" None } - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ { Elt "2" None } - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ (Pair "2" None) - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 21 (just consumed gas: 0.010) - [ "2" - None - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 22 (just consumed gas: 0.727) - [ { Elt "1" "one" } - Unit ] - - location: 19 (just consumed gas: 0.015) - [ { Elt "1" "one" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "one" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "one" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/update_big_map.tz on storage '(Pair { Elt "1" "one" ; Elt "2" "two" } Unit)' and input '{ Elt "1" (Some "two") }' --trace-stack -storage - (Pair 4 Unit) -emitted operations - -big_map diff - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" - Set map(4)["1"] to "two" -trace - - location: 15 (just consumed gas: 12.515) - [ (Pair { Elt "1" (Some "two") } { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 15 (just consumed gas: 0.010) - [ { Elt "1" (Some "two") } - (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 16 (just consumed gas: 0) - [ (Pair { Elt "1" "one" ; Elt "2" "two" } Unit) ] - - location: 18 (just consumed gas: 0.010) - [ { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 16 (just consumed gas: 0.025) - [ { Elt "1" (Some "two") } - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0) - [ (Pair "1" (Some "two")) - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 21 (just consumed gas: 0.010) - [ "1" - (Some "two") - { Elt "1" "one" ; Elt "2" "two" } - Unit ] - - location: 22 (just consumed gas: 0.727) - [ { Elt "1" "two" ; Elt "2" "two" } - Unit ] - - location: 19 (just consumed gas: 0.015) - [ { Elt "1" "two" ; Elt "2" "two" } - Unit ] - - location: 23 (just consumed gas: 0.010) - [ (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 24 (just consumed gas: 0.010) - [ {} - (Pair { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - location: 26 (just consumed gas: 0.010) - [ (Pair {} { Elt "1" "two" ; Elt "2" "two" } Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair None {})' and input '"hello"' --trace-stack -storage - (Pair None 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Unset map(4)["hello"] -trace - - location: 13 (just consumed gas: 8.479) - [ (Pair "hello" None {}) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair None {}) ] - - location: 14 (just consumed gas: 0) - [ (Pair None {}) ] - - location: 16 (just consumed gas: 0.010) - [ None - {} ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - None - {} ] - - location: 17 (just consumed gas: 0.787) - [ None - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None {}) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None {}) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None {}) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair (Some 4) {})' and input '"hello"' --trace-stack -storage - (Pair None 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["hello"] to 4 -trace - - location: 13 (just consumed gas: 8.579) - [ (Pair "hello" (Some 4) {}) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair (Some 4) {}) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 4) {}) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 4) - {} ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - (Some 4) - {} ] - - location: 17 (just consumed gas: 0.787) - [ None - { Elt "hello" 4 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" 4 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None { Elt "hello" 4 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None { Elt "hello" 4 }) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair None { Elt "hello" 4 })' and input '"hello"' --trace-stack -storage - (Pair (Some 4) 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Unset map(4)["hello"] -trace - - location: 13 (just consumed gas: 9.509) - [ (Pair "hello" None { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair None { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - None - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.792) - [ (Some 4) - {} ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 4) {}) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 4) {}) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 4) {}) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hello"' --trace-stack -storage - (Pair (Some 4) 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["hello"] to 5 -trace - - location: 13 (just consumed gas: 9.609) - [ (Pair "hello" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hello" - (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 5) - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hello" - (Some 5) - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.792) - [ (Some 4) - { Elt "hello" 5 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 4) { Elt "hello" 5 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 4) { Elt "hello" 5 }) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair (Some 5) { Elt "hello" 4 })' and input '"hi"' --trace-stack -storage - (Pair None 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["hello"] to 4 - Set map(4)["hi"] to 5 -trace - - location: 13 (just consumed gas: 9.579) - [ (Pair "hi" (Some 5) { Elt "hello" 4 }) ] - - location: 13 (just consumed gas: 0.010) - [ "hi" - (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair (Some 5) { Elt "hello" 4 }) ] - - location: 16 (just consumed gas: 0.010) - [ (Some 5) - { Elt "hello" 4 } ] - - location: 14 (just consumed gas: 0.025) - [ "hi" - (Some 5) - { Elt "hello" 4 } ] - - location: 17 (just consumed gas: 0.759) - [ None - { Elt "hello" 4 ; Elt "hi" 5 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} None { Elt "hello" 4 ; Elt "hi" 5 }) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --trace-stack -storage - (Pair (Some 1) 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["2"] to 2 - Unset map(4)["1"] -trace - - location: 13 (just consumed gas: 10.367) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010) - [ "1" - (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025) - [ "1" - None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.751) - [ (Some 1) - { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/get_and_update_big_map.tz on storage '(Pair None { Elt "1" 1 ; Elt "2" 2 })' and input '"1"' --trace-stack -storage - (Pair (Some 1) 4) -emitted operations - -big_map diff - New map(4) of type (big_map string nat) - Set map(4)["2"] to 2 - Unset map(4)["1"] -trace - - location: 13 (just consumed gas: 10.367) - [ (Pair "1" None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 13 (just consumed gas: 0.010) - [ "1" - (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 14 (just consumed gas: 0) - [ (Pair None { Elt "1" 1 ; Elt "2" 2 }) ] - - location: 16 (just consumed gas: 0.010) - [ None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 14 (just consumed gas: 0.025) - [ "1" - None - { Elt "1" 1 ; Elt "2" 2 } ] - - location: 17 (just consumed gas: 0.751) - [ (Some 1) - { Elt "2" 2 } ] - - location: 18 (just consumed gas: 0.010) - [ (Pair (Some 1) { Elt "2" 2 }) ] - - location: 19 (just consumed gas: 0.010) - [ {} - (Pair (Some 1) { Elt "2" 2 }) ] - - location: 21 (just consumed gas: 0.010) - [ (Pair {} (Some 1) { Elt "2" 2 }) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Left (Pair { Elt "1" "one" } { Elt "2" "two" }))' and input '(Left Unit)' --trace-stack -storage - (Left (Pair 4 5)) -emitted operations - -big_map diff - New map(5) of type (big_map string string) - Set map(5)["1"] to "one" - New map(4) of type (big_map string string) - Set map(4)["2"] to "two" -trace - - location: 43 (just consumed gas: 62.128) - [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (just consumed gas: 0.010) - [ (Left Unit) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0) - [ Unit - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (just consumed gas: 0.010) - [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (just consumed gas: 0) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (just consumed gas: 0.015) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (just consumed gas: 0.010) - [ { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 55 (just consumed gas: 0.010) - [ { Elt "2" "two" } - { Elt "1" "one" } ] - - location: 56 (just consumed gas: 0.010) - [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (just consumed gas: 0.010) - [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (just consumed gas: 0.015) - [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" }))) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Left (Pair { Elt "1" "one" } { Elt "2" "two" }))' and input '(Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))))' --trace-stack -storage - (Left (Pair 4 5)) -emitted operations - -big_map diff - New map(5) of type (big_map string string) - Set map(5)["4"] to "four" - New map(4) of type (big_map string string) - Set map(4)["3"] to "three" -trace - - location: 43 (just consumed gas: 65.416) - [ (Pair (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (just consumed gas: 0.010) - [ (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0) - [ (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0) - [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (just consumed gas: 0.010) - [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) - (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 63 (just consumed gas: 0.010) - [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (just consumed gas: 0.015) - [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (just consumed gas: 0.015) - [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Left (Pair { Elt "1" "one" } { Elt "2" "two" }))' and input '(Right (Left (Right Unit)))' --trace-stack -storage - (Right Unit) -emitted operations - -big_map diff - -trace - - location: 43 (just consumed gas: 62.768) - [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (just consumed gas: 0.010) - [ (Right (Left (Right Unit))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0) - [ (Left (Right Unit)) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0) - [ (Right Unit) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (just consumed gas: 0.010) - [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) - (Right Unit) ] - - location: 63 (just consumed gas: 0.010) - [ (Right Unit) ] - - location: 60 (just consumed gas: 0.015) - [ (Right Unit) ] - - location: 44 (just consumed gas: 0.015) - [ (Right Unit) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Right Unit) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Right Unit)) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Right Unit)' and input '(Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) )))' --trace-stack -storage - (Left (Pair 4 5)) -emitted operations - -big_map diff - New map(5) of type (big_map string string) - Set map(5)["gaz"] to "baz" - New map(4) of type (big_map string string) - Set map(4)["foo"] to "bar" -trace - - location: 43 (just consumed gas: 60.906) - [ (Pair (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit)) ] - - location: 43 (just consumed gas: 0.010) - [ (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) - (Right Unit) ] - - location: 44 (just consumed gas: 0) - [ (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }))) - (Right Unit) ] - - location: 60 (just consumed gas: 0) - [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) - (Right Unit) ] - - location: 65 (just consumed gas: 0) - [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) - (Right Unit) ] - - location: 67 (just consumed gas: 0) - [ (Right Unit) ] - - location: 70 (just consumed gas: 0) - [ Unit ] - - location: 70 (just consumed gas: 0.015) - [ Unit ] - - location: 76 (just consumed gas: 0.010) - [ ] - - location: 67 (just consumed gas: 0.025) - [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (just consumed gas: 0.010) - [ { Pair "foo" "bar" } - { Pair "gaz" "baz" } ] - - location: 78 (just consumed gas: 0) - [ { Pair "gaz" "baz" } ] - - location: 80 (just consumed gas: 0.300) - [ {} - { Pair "gaz" "baz" } ] - - location: 78 (just consumed gas: 0.025) - [ { Pair "foo" "bar" } - {} - { Pair "gaz" "baz" } ] - - location: 83 (just consumed gas: 0) - [ (Pair "foo" "bar") - {} - { Pair "gaz" "baz" } ] - - location: 85 (just consumed gas: 0.010) - [ "foo" - "bar" - {} - { Pair "gaz" "baz" } ] - - location: 86 (just consumed gas: 0) - [ "bar" - {} - { Pair "gaz" "baz" } ] - - location: 88 (just consumed gas: 0.010) - [ (Some "bar") - {} - { Pair "gaz" "baz" } ] - - location: 86 (just consumed gas: 0.025) - [ "foo" - (Some "bar") - {} - { Pair "gaz" "baz" } ] - - location: 89 (just consumed gas: 0.744) - [ { Elt "foo" "bar" } - { Pair "gaz" "baz" } ] - - location: 83 (just consumed gas: 0.015) - [ { Elt "foo" "bar" } - { Pair "gaz" "baz" } ] - - location: 90 (just consumed gas: 0.010) - [ { Pair "gaz" "baz" } - { Elt "foo" "bar" } ] - - location: 91 (just consumed gas: 0) - [ { Elt "foo" "bar" } ] - - location: 93 (just consumed gas: 0.300) - [ {} - { Elt "foo" "bar" } ] - - location: 91 (just consumed gas: 0.025) - [ { Pair "gaz" "baz" } - {} - { Elt "foo" "bar" } ] - - location: 96 (just consumed gas: 0) - [ (Pair "gaz" "baz") - {} - { Elt "foo" "bar" } ] - - location: 98 (just consumed gas: 0.010) - [ "gaz" - "baz" - {} - { Elt "foo" "bar" } ] - - location: 99 (just consumed gas: 0) - [ "baz" - {} - { Elt "foo" "bar" } ] - - location: 101 (just consumed gas: 0.010) - [ (Some "baz") - {} - { Elt "foo" "bar" } ] - - location: 99 (just consumed gas: 0.025) - [ "gaz" - (Some "baz") - {} - { Elt "foo" "bar" } ] - - location: 102 (just consumed gas: 0.744) - [ { Elt "gaz" "baz" } - { Elt "foo" "bar" } ] - - location: 96 (just consumed gas: 0.015) - [ { Elt "gaz" "baz" } - { Elt "foo" "bar" } ] - - location: 103 (just consumed gas: 0.010) - [ { Elt "foo" "bar" } - { Elt "gaz" "baz" } ] - - location: 104 (just consumed gas: 0.010) - [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (just consumed gas: 0.010) - [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (just consumed gas: 0.015) - [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (just consumed gas: 0.015) - [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (just consumed gas: 0.015) - [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }))) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Left (Pair { Elt "1" "one" } { Elt "2" "two" }) )' and input '(Right (Right (Right (Left { Pair "3" "three" }))))' --trace-stack -storage - (Left (Pair 4 5)) -emitted operations - -big_map diff - New map(5) of type (big_map string string) - Set map(5)["2"] to "two" - New map(4) of type (big_map string string) - Set map(4)["3"] to "three" - Set map(4)["1"] to "one" -trace - - location: 43 (just consumed gas: 63.036) - [ (Pair (Right (Right (Right (Left { Pair "3" "three" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (just consumed gas: 0.010) - [ (Right (Right (Right (Left { Pair "3" "three" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0) - [ (Right (Right (Left { Pair "3" "three" }))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0) - [ (Right (Left { Pair "3" "three" })) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (just consumed gas: 0) - [ (Left { Pair "3" "three" }) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0) - [ { Pair "3" "three" } - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 110 (just consumed gas: 0) - [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (just consumed gas: 0) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (just consumed gas: 0.015) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (just consumed gas: 0.010) - [ { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 110 (just consumed gas: 0.025) - [ { Pair "3" "three" } - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 120 (just consumed gas: 0) - [ (Pair "3" "three") - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 122 (just consumed gas: 0.010) - [ "3" - "three" - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 123 (just consumed gas: 0) - [ "three" - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 125 (just consumed gas: 0.010) - [ (Some "three") - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 123 (just consumed gas: 0.025) - [ "3" - (Some "three") - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 126 (just consumed gas: 0.724) - [ { Elt "1" "one" ; Elt "3" "three" } - { Elt "2" "two" } ] - - location: 120 (just consumed gas: 0.015) - [ { Elt "1" "one" ; Elt "3" "three" } - { Elt "2" "two" } ] - - location: 127 (just consumed gas: 0.010) - [ (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }) ] - - location: 128 (just consumed gas: 0.010) - [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0.015) - [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 65 (just consumed gas: 0.015) - [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0.015) - [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0.015) - [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }))) ] - - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/big_map_magic.tz on storage '(Left (Pair { Elt "1" "one" } { Elt "2" "two" }))' and input '(Right (Right (Right (Right { "1" }))))' --trace-stack -storage - (Left (Pair 4 5)) -emitted operations - -big_map diff - New map(5) of type (big_map string string) - Set map(5)["2"] to "two" - New map(4) of type (big_map string string) - Unset map(4)["1"] -trace - - location: 43 (just consumed gas: 62.772) - [ (Pair (Right (Right (Right (Right { "1" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (just consumed gas: 0.010) - [ (Right (Right (Right (Right { "1" })))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0) - [ (Right (Right (Right { "1" }))) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0) - [ (Right (Right { "1" })) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (just consumed gas: 0) - [ (Right { "1" }) - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0) - [ { "1" } - (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (just consumed gas: 0) - [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (just consumed gas: 0) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (just consumed gas: 0.015) - [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (just consumed gas: 0.010) - [ { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 131 (just consumed gas: 0.025) - [ { "1" } - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 141 (just consumed gas: 0) - [ "1" - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 143 (just consumed gas: 0) - [ { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 145 (just consumed gas: 0.010) - [ None - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 143 (just consumed gas: 0.025) - [ "1" - None - { Elt "1" "one" } - { Elt "2" "two" } ] - - location: 147 (just consumed gas: 0.724) - [ {} - { Elt "2" "two" } ] - - location: 141 (just consumed gas: 0.015) - [ {} - { Elt "2" "two" } ] - - location: 148 (just consumed gas: 0.010) - [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (just consumed gas: 0.010) - [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (just consumed gas: 0.015) - [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (just consumed gas: 0.015) - [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (just consumed gas: 0.015) - [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (just consumed gas: 0.015) - [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (just consumed gas: 0.010) - [ {} - (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (just consumed gas: 0.010) - [ (Pair {} (Left (Pair {} { Elt "2" "two" }))) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- check_signature.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- check_signature.out deleted file mode 100644 index 0102e4185557..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- check_signature.out +++ /dev/null @@ -1,243 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/check_signature.tz on storage '(Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello")' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --trace-stack -storage - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") -emitted operations - -big_map diff - -trace - - location: 9 (just consumed gas: 346.280) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 11 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 14 (just consumed gas: 0.010) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 15 (just consumed gas: 0.010) - [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 16 (just consumed gas: 0) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 18 (just consumed gas: 0.010) - [ "hello" - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 19 (just consumed gas: 0.266) - [ 0x05010000000568656c6c6f - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 16 (just consumed gas: 0.025) - [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000568656c6c6f - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000568656c6c6f - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 20 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000568656c6c6f - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 21 (just consumed gas: 65.812) - [ True - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 22 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 22 (just consumed gas: 0.015) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 28 (just consumed gas: 0.010) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 29 (just consumed gas: 0.010) - [ {} - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - location: 31 (just consumed gas: 0.010) - [ (Pair {} - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "hello") ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/check_signature.tz on storage '(Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd")' and input '"edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav"' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 01: parameter key; - 02: storage (pair signature string); - 03: code { - 04: DUP; DUP; - 05: DIP{ CDR; DUP; CAR; - 06: DIP{CDR; PACK}}; - 07: CAR; CHECK_SIGNATURE; - 08: IF {} {FAIL} ; - 09: CDR; NIL operation ; PAIR}; - 10: - 11: -At line 8 characters 14 to 18, -script reached FAILWITH instruction -with Unit -trace - - location: 9 (just consumed gas: 346.270) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 9 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 10 (just consumed gas: 0.010) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 11 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 13 (just consumed gas: 0.010) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 14 (just consumed gas: 0.010) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 15 (just consumed gas: 0.010) - [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 16 (just consumed gas: 0) - [ (Pair "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 18 (just consumed gas: 0.010) - [ "abcd" - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 19 (just consumed gas: 0.256) - [ 0x05010000000461626364 - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 16 (just consumed gas: 0.025) - [ "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000461626364 - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 11 (just consumed gas: 0.025) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000461626364 - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 20 (just consumed gas: 0.010) - [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - 0x05010000000461626364 - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 21 (just consumed gas: 65.811) - [ False - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 22 (just consumed gas: 0) - [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] - - location: 26 (just consumed gas: 0.010) - [ Unit - (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" - "abcd") ] -Fatal error: - error running script diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- hash_consistency.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- hash_consistency.out deleted file mode 100644 index cb6d2f8c48b5..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- hash_consistency.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-client --mode mockup hash data '(Pair 22220000000 (Pair "2017-12-13T04:49:00Z" 034))' of type '(pair mutez (pair timestamp int))' -Raw packed data: 0x0507070080acd2c6a501070700bcc485a30b0022 -Script-expression-ID-Hash: expruenXhGp5JQoHJTGv4DzBR8Zm3HGvea8Q8BaMPywsY2bxrHAEgC -Raw Script-expression-ID-Hash: 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc -Ledger Blake2b hash: B5B7PuGGVUrdHUW9Df8wPNJQRuUmx56aH1XVpvbUZvW7 -Raw Sha256 hash: 0x538634a0f81b55f1c946c1207a25c262479566d20bd3d5cd2cdbb2940fc45774 -Raw Sha512 hash: 0x49d5c19c2da4ee74f85225c95625a4b77b94724f4285b436b9d4be27d40491354bdc8e9d8a3d9b2857e5fb59b172605edd02fc4b61ce3cd3f84aa11ed1731ff6 -Gas remaining: 1039997.762 units remaining - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/hash_consistency_checker.tz on storage 0x00 and input '(Pair 22220000000 (Pair "2017-12-13T04:49:00Z" 034))' --trace-stack -storage - 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 6.144) - [ (Pair (Pair 22220000000 "2017-12-13T04:49:00Z" 34) 0x00) ] - - location: 11 (just consumed gas: 0.010) - [ (Pair 22220000000 "2017-12-13T04:49:00Z" 34) ] - - location: 12 (just consumed gas: 1.330) - [ 0x0507070080acd2c6a501070700bcc485a30b0022 ] - - location: 13 (just consumed gas: 0.452) - [ 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 14 (just consumed gas: 0.010) - [ {} - 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc ] - - location: 16 (just consumed gas: 0.010) - [ (Pair {} 0x95a69fcbbf773989333dc9b31e246575812dbea19d25089f83a2aeeea16ab4bc) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- map_map_side_effect.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- map_map_side_effect.out deleted file mode 100644 index 53c1daf1c5fe..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- map_map_side_effect.out +++ /dev/null @@ -1,315 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/map_map_sideeffect.tz on storage '(Pair {} 0)' and input 10 --trace-stack -storage - (Pair {} 0) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 16.571) - [ (Pair 10 {} 0) ] - - location: 11 (just consumed gas: 0.010) - [ 10 - (Pair {} 0) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair {} 0) - 10 ] - - location: 13 (just consumed gas: 0.010) - [ {} - 10 ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 17 (just consumed gas: 0.010) - [ 0 ] - - location: 14 (just consumed gas: 0.025) - [ 10 - 0 ] - - location: 14 (just consumed gas: 0.010) - [ {} - 10 - 0 ] - - location: 14 (just consumed gas: 0) - [ {} - 10 - 0 ] - - location: 20 (just consumed gas: 0) - [ {} - 10 - 0 ] - - location: 34 (just consumed gas: 0) - [ 10 - 0 ] - - location: 36 (just consumed gas: 0.010) - [ 0 ] - - location: 34 (just consumed gas: 0.025) - [ {} - 0 ] - - location: 37 (just consumed gas: 0.010) - [ (Pair {} 0) ] - - location: 38 (just consumed gas: 0.010) - [ {} - (Pair {} 0) ] - - location: 40 (just consumed gas: 0.010) - [ (Pair {} {} 0) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/map_map_sideeffect.tz on storage '(Pair { Elt "foo" 1 } 1)' and input 10 --trace-stack -storage - (Pair { Elt "foo" 11 } 11) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 16.901) - [ (Pair 10 { Elt "foo" 1 } 1) ] - - location: 11 (just consumed gas: 0.010) - [ 10 - (Pair { Elt "foo" 1 } 1) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 1 } 1) - 10 ] - - location: 13 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - 10 ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 17 (just consumed gas: 0.010) - [ 0 ] - - location: 14 (just consumed gas: 0.025) - [ 10 - 0 ] - - location: 14 (just consumed gas: 0.010) - [ { Elt "foo" 1 } - 10 - 0 ] - - location: 14 (just consumed gas: 0) - [ { Elt "foo" 1 } - 10 - 0 ] - - location: 20 (just consumed gas: 0) - [ (Pair "foo" 1) - 10 - 0 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 10 - 0 ] - - location: 23 (just consumed gas: 0) - [ 10 - 0 ] - - location: 25 (just consumed gas: 0.010) - [ 10 - 10 - 0 ] - - location: 23 (just consumed gas: 0.025) - [ 1 - 10 - 10 - 0 ] - - location: 26 (just consumed gas: 0.035) - [ 11 - 10 - 0 ] - - location: 27 (just consumed gas: 0.010) - [ 11 - 11 - 10 - 0 ] - - location: 28 (just consumed gas: 0.048) - [ 11 - 10 - 11 - 0 ] - - location: 30 (just consumed gas: 0) - [ 11 - 0 ] - - location: 33 (just consumed gas: 0.035) - [ 11 ] - - location: 30 (just consumed gas: 0.025) - [ 10 - 11 ] - - location: 30 (just consumed gas: 0.010) - [ 11 - 10 - 11 ] - - location: 30 (just consumed gas: 0) - [ 11 - 10 - 11 ] - - location: 20 (just consumed gas: 0.015) - [ { Elt "foo" 11 } - 10 - 11 ] - - location: 34 (just consumed gas: 0) - [ 10 - 11 ] - - location: 36 (just consumed gas: 0.010) - [ 11 ] - - location: 34 (just consumed gas: 0.025) - [ { Elt "foo" 11 } - 11 ] - - location: 37 (just consumed gas: 0.010) - [ (Pair { Elt "foo" 11 } 11) ] - - location: 38 (just consumed gas: 0.010) - [ {} - (Pair { Elt "foo" 11 } 11) ] - - location: 40 (just consumed gas: 0.010) - [ (Pair {} { Elt "foo" 11 } 11) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/map_map_sideeffect.tz on storage '(Pair { Elt "bar" 5 ; Elt "foo" 1 } 6)' and input 15 --trace-stack -storage - (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) -emitted operations - -big_map diff - -trace - - location: 11 (just consumed gas: 17.272) - [ (Pair 15 { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 11 (just consumed gas: 0.010) - [ 15 - (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) ] - - location: 12 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 5 ; Elt "foo" 1 } 6) - 15 ] - - location: 13 (just consumed gas: 0.010) - [ { Elt "bar" 5 ; Elt "foo" 1 } - 15 ] - - location: 14 (just consumed gas: 0) - [ ] - - location: 17 (just consumed gas: 0.010) - [ 0 ] - - location: 14 (just consumed gas: 0.025) - [ 15 - 0 ] - - location: 14 (just consumed gas: 0.010) - [ { Elt "bar" 5 ; Elt "foo" 1 } - 15 - 0 ] - - location: 14 (just consumed gas: 0) - [ { Elt "bar" 5 ; Elt "foo" 1 } - 15 - 0 ] - - location: 20 (just consumed gas: 0) - [ (Pair "bar" 5) - 15 - 0 ] - - location: 22 (just consumed gas: 0.010) - [ 5 - 15 - 0 ] - - location: 23 (just consumed gas: 0) - [ 15 - 0 ] - - location: 25 (just consumed gas: 0.010) - [ 15 - 15 - 0 ] - - location: 23 (just consumed gas: 0.025) - [ 5 - 15 - 15 - 0 ] - - location: 26 (just consumed gas: 0.035) - [ 20 - 15 - 0 ] - - location: 27 (just consumed gas: 0.010) - [ 20 - 20 - 15 - 0 ] - - location: 28 (just consumed gas: 0.048) - [ 20 - 15 - 20 - 0 ] - - location: 30 (just consumed gas: 0) - [ 20 - 0 ] - - location: 33 (just consumed gas: 0.035) - [ 20 ] - - location: 30 (just consumed gas: 0.025) - [ 15 - 20 ] - - location: 30 (just consumed gas: 0.010) - [ 20 - 15 - 20 ] - - location: 30 (just consumed gas: 0) - [ 20 - 15 - 20 ] - - location: 20 (just consumed gas: 0.015) - [ (Pair "foo" 1) - 15 - 20 ] - - location: 22 (just consumed gas: 0.010) - [ 1 - 15 - 20 ] - - location: 23 (just consumed gas: 0) - [ 15 - 20 ] - - location: 25 (just consumed gas: 0.010) - [ 15 - 15 - 20 ] - - location: 23 (just consumed gas: 0.025) - [ 1 - 15 - 15 - 20 ] - - location: 26 (just consumed gas: 0.035) - [ 16 - 15 - 20 ] - - location: 27 (just consumed gas: 0.010) - [ 16 - 16 - 15 - 20 ] - - location: 28 (just consumed gas: 0.048) - [ 16 - 15 - 16 - 20 ] - - location: 30 (just consumed gas: 0) - [ 16 - 20 ] - - location: 33 (just consumed gas: 0.035) - [ 36 ] - - location: 30 (just consumed gas: 0.025) - [ 15 - 36 ] - - location: 30 (just consumed gas: 0.010) - [ 16 - 15 - 36 ] - - location: 30 (just consumed gas: 0) - [ 16 - 15 - 36 ] - - location: 20 (just consumed gas: 0.015) - [ { Elt "bar" 20 ; Elt "foo" 16 } - 15 - 36 ] - - location: 34 (just consumed gas: 0) - [ 15 - 36 ] - - location: 36 (just consumed gas: 0.010) - [ 36 ] - - location: 34 (just consumed gas: 0.025) - [ { Elt "bar" 20 ; Elt "foo" 16 } - 36 ] - - location: 37 (just consumed gas: 0.010) - [ (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 38 (just consumed gas: 0.010) - [ {} - (Pair { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - - location: 40 (just consumed gas: 0.010) - [ (Pair {} { Elt "bar" 20 ; Elt "foo" 16 } 36) ] - diff --git a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- pack_unpack.out b/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- pack_unpack.out deleted file mode 100644 index e30afebf1042..000000000000 --- a/tezt/tests/expected/contract_opcodes.ml/Nairobi- test Michelson opcodes- pack_unpack.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/packunpack.tz on storage Unit and input '(Pair (Pair (Pair "toto" {3;7;9;1}) {1;2;3}) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003)' --trace-stack -storage - Unit -emitted operations - -big_map diff - -trace - - location: 15 (just consumed gas: 19.769) - [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) - Unit) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (just consumed gas: 0) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 19 (just consumed gas: 0.010) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 17 (just consumed gas: 0.025) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 20 (just consumed gas: 2.807) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 23 (just consumed gas: 0.035) - [ 0 - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 24 (just consumed gas: 0.010) - [ True - 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (just consumed gas: 0) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 25 (just consumed gas: 0.015) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 ] - - location: 31 (just consumed gas: 2.753) - [ (Some (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 })) ] - - location: 40 (just consumed gas: 0) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 40 (just consumed gas: 0.015) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) ] - - location: 46 (just consumed gas: 0.010) - [ ] - - location: 47 (just consumed gas: 0.010) - [ Unit ] - - location: 48 (just consumed gas: 0.010) - [ {} - Unit ] - - location: 50 (just consumed gas: 0.010) - [ (Pair {} Unit) ] - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/packunpack.tz on storage Unit and input '(Pair (Pair (Pair "toto" {3;7;9;1}) {1;2;3}) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004)' --trace-stack -Runtime error in contract KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi: - 1: parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; - 2: storage unit ; - 3: code { CAR ; UNPAIR ; DIP { DUP } ; - 4: PACK ; ASSERT_CMPEQ ; - 5: UNPACK (pair (pair string (list int)) (set nat)) ; ASSERT_SOME ; DROP ; - 6: UNIT ; NIL operation ; PAIR } - 7: -At line 4 characters 14 to 26, -script reached FAILWITH instruction -with Unit -trace - - location: 15 (just consumed gas: 19.769) - [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) - Unit) ] - - location: 15 (just consumed gas: 0.010) - [ (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) ] - - location: 16 (just consumed gas: 0.010) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (just consumed gas: 0) - [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 19 (just consumed gas: 0.010) - [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 17 (just consumed gas: 0.025) - [ (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 20 (just consumed gas: 2.807) - [ 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003 - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 23 (just consumed gas: 0.035) - [ -1 - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 24 (just consumed gas: 0.010) - [ False - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 25 (just consumed gas: 0) - [ 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] - - location: 29 (just consumed gas: 0.010) - [ Unit - 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004 ] -Fatal error: - error running script diff --git a/tezt/tests/expected/contract_typecheck_regression.ml/Nairobi- Tc scripts.out b/tezt/tests/expected/contract_typecheck_regression.ml/Nairobi- Tc scripts.out deleted file mode 100644 index 0220335906d6..000000000000 --- a/tezt/tests/expected/contract_typecheck_regression.ml/Nairobi- Tc scripts.out +++ /dev/null @@ -1,50658 +0,0 @@ - -./octez-client --protocol PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf --mode mockup --no-base-dir-warnings typecheck script michelson_test_scripts/attic/accounts.tz michelson_test_scripts/attic/add1.tz michelson_test_scripts/attic/add1_list.tz michelson_test_scripts/attic/after_strategy.tz michelson_test_scripts/attic/always.tz michelson_test_scripts/attic/append.tz michelson_test_scripts/attic/at_least.tz michelson_test_scripts/attic/auction.tz michelson_test_scripts/attic/bad_lockup.tz michelson_test_scripts/attic/big_map_union.tz michelson_test_scripts/attic/cadr_annotation.tz michelson_test_scripts/attic/concat.tz michelson_test_scripts/attic/conditionals.tz michelson_test_scripts/attic/cons_twice.tz michelson_test_scripts/attic/cps_fact.tz michelson_test_scripts/attic/create_add1_lists.tz michelson_test_scripts/attic/data_publisher.tz michelson_test_scripts/attic/dispatch.tz michelson_test_scripts/attic/empty.tz michelson_test_scripts/attic/fail_amount.tz michelson_test_scripts/attic/faucet.tz michelson_test_scripts/attic/forward.tz michelson_test_scripts/attic/id.tz michelson_test_scripts/attic/infinite_loop.tz michelson_test_scripts/attic/insertion_sort.tz michelson_test_scripts/attic/int_publisher.tz michelson_test_scripts/attic/king_of_tez.tz michelson_test_scripts/attic/list_of_transactions.tz michelson_test_scripts/attic/queue.tz michelson_test_scripts/attic/reduce_map.tz michelson_test_scripts/attic/reentrancy.tz michelson_test_scripts/attic/reservoir.tz michelson_test_scripts/attic/scrutable_reservoir.tz michelson_test_scripts/attic/spawn_identities.tz michelson_test_scripts/entrypoints/big_map_entrypoints.tz michelson_test_scripts/entrypoints/delegatable_target.tz michelson_test_scripts/entrypoints/manager.tz michelson_test_scripts/entrypoints/no_default_target.tz michelson_test_scripts/entrypoints/no_entrypoint_target.tz michelson_test_scripts/entrypoints/rooted_target.tz michelson_test_scripts/entrypoints/simple_entrypoints.tz michelson_test_scripts/macros/assert.tz michelson_test_scripts/macros/assert_cmpeq.tz michelson_test_scripts/macros/assert_cmpge.tz michelson_test_scripts/macros/assert_cmpgt.tz michelson_test_scripts/macros/assert_cmple.tz michelson_test_scripts/macros/assert_cmplt.tz michelson_test_scripts/macros/assert_cmpneq.tz michelson_test_scripts/macros/assert_eq.tz michelson_test_scripts/macros/assert_ge.tz michelson_test_scripts/macros/assert_gt.tz michelson_test_scripts/macros/assert_le.tz michelson_test_scripts/macros/assert_lt.tz michelson_test_scripts/macros/assert_neq.tz michelson_test_scripts/macros/big_map_get_add.tz michelson_test_scripts/macros/big_map_mem.tz michelson_test_scripts/macros/build_list.tz michelson_test_scripts/macros/carn_and_cdrn.tz michelson_test_scripts/macros/compare.tz michelson_test_scripts/macros/compare_bytes.tz michelson_test_scripts/macros/fail.tz michelson_test_scripts/macros/guestbook.tz michelson_test_scripts/macros/macro_annotations.tz michelson_test_scripts/macros/map_caddaadr.tz michelson_test_scripts/macros/max_in_list.tz michelson_test_scripts/macros/min.tz michelson_test_scripts/macros/pair_macro.tz michelson_test_scripts/macros/set_caddaadr.tz michelson_test_scripts/macros/take_my_money.tz michelson_test_scripts/macros/unpair_macro.tz michelson_test_scripts/mini_scenarios/999_constant.tz michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz michelson_test_scripts/mini_scenarios/always_fails.tz michelson_test_scripts/mini_scenarios/authentication.tz michelson_test_scripts/mini_scenarios/big_map_all.tz michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz michelson_test_scripts/mini_scenarios/big_map_magic.tz michelson_test_scripts/mini_scenarios/big_map_read.tz michelson_test_scripts/mini_scenarios/big_map_store.tz michelson_test_scripts/mini_scenarios/big_map_write.tz michelson_test_scripts/mini_scenarios/cache_consistency.tz michelson_test_scripts/mini_scenarios/check_signature.tz michelson_test_scripts/mini_scenarios/constant_entrypoints.tz michelson_test_scripts/mini_scenarios/constant_unit.tz michelson_test_scripts/mini_scenarios/create_contract.tz michelson_test_scripts/mini_scenarios/create_contract_simple.tz michelson_test_scripts/mini_scenarios/default_account.tz michelson_test_scripts/mini_scenarios/emit_events.tz michelson_test_scripts/mini_scenarios/execution_order_appender.tz michelson_test_scripts/mini_scenarios/execution_order_caller.tz michelson_test_scripts/mini_scenarios/execution_order_storer.tz michelson_test_scripts/mini_scenarios/fa12_reference.tz michelson_test_scripts/mini_scenarios/fail_on_false.tz michelson_test_scripts/mini_scenarios/generic_multisig.tz michelson_test_scripts/mini_scenarios/groth16.tz michelson_test_scripts/mini_scenarios/hardlimit.tz michelson_test_scripts/mini_scenarios/large_error.tz michelson_test_scripts/mini_scenarios/large_flat_contract.tz michelson_test_scripts/mini_scenarios/large_str_id.tz michelson_test_scripts/mini_scenarios/legacy_multisig.tz michelson_test_scripts/mini_scenarios/lockup.tz michelson_test_scripts/mini_scenarios/loop.tz michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz michelson_test_scripts/mini_scenarios/multiple_en2.tz michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz michelson_test_scripts/mini_scenarios/nat_id.tz michelson_test_scripts/mini_scenarios/noop_bytes.tz michelson_test_scripts/mini_scenarios/originate_contract.tz michelson_test_scripts/mini_scenarios/parameterized_multisig.tz michelson_test_scripts/mini_scenarios/parsable_contract.tz michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz michelson_test_scripts/mini_scenarios/replay.tz michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz michelson_test_scripts/mini_scenarios/self_address_receiver.tz michelson_test_scripts/mini_scenarios/self_address_sender.tz michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz michelson_test_scripts/mini_scenarios/str_id.tz michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz michelson_test_scripts/mini_scenarios/tickets_015.tz michelson_test_scripts/mini_scenarios/tickets_bag_016.tz michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz michelson_test_scripts/mini_scenarios/tickets_send_016.tz michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz michelson_test_scripts/mini_scenarios/tzip4_view.tz michelson_test_scripts/mini_scenarios/very_small.tz michelson_test_scripts/mini_scenarios/view_check_caller.tz michelson_test_scripts/mini_scenarios/view_registers_callers.tz michelson_test_scripts/mini_scenarios/viewable.tz michelson_test_scripts/mini_scenarios/vote_for_delegate.tz michelson_test_scripts/mini_scenarios/weather_insurance.tz michelson_test_scripts/mini_scenarios/xcat.tz michelson_test_scripts/mini_scenarios/xcat_dapp.tz michelson_test_scripts/non_regression/262_bug.tz michelson_test_scripts/non_regression/843_bug.tz michelson_test_scripts/non_regression/bad_annot_contract.tz michelson_test_scripts/non_regression/pairk_annot.tz michelson_test_scripts/opcodes/abs.tz michelson_test_scripts/opcodes/add.tz michelson_test_scripts/opcodes/add_bls12_381_fr.tz michelson_test_scripts/opcodes/add_bls12_381_g1.tz michelson_test_scripts/opcodes/add_bls12_381_g2.tz michelson_test_scripts/opcodes/add_delta_timestamp.tz michelson_test_scripts/opcodes/add_timestamp_delta.tz michelson_test_scripts/opcodes/address.tz michelson_test_scripts/opcodes/amount_after_fib_view.tz michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz michelson_test_scripts/opcodes/amount_after_view.tz michelson_test_scripts/opcodes/and.tz michelson_test_scripts/opcodes/and_binary.tz michelson_test_scripts/opcodes/and_bytes_016.tz michelson_test_scripts/opcodes/and_logical_1.tz michelson_test_scripts/opcodes/balance.tz michelson_test_scripts/opcodes/balance_after_fib_view.tz michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz michelson_test_scripts/opcodes/balance_after_view.tz michelson_test_scripts/opcodes/big_map_mem_nat.tz michelson_test_scripts/opcodes/big_map_mem_string.tz michelson_test_scripts/opcodes/big_map_to_self.tz michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz michelson_test_scripts/opcodes/bytes.tz michelson_test_scripts/opcodes/bytes_of_int_016.tz michelson_test_scripts/opcodes/bytes_of_nat_016.tz michelson_test_scripts/opcodes/car.tz michelson_test_scripts/opcodes/cdr.tz michelson_test_scripts/opcodes/chain_id.tz michelson_test_scripts/opcodes/chain_id_store.tz michelson_test_scripts/opcodes/check_signature.tz michelson_test_scripts/opcodes/comb.tz michelson_test_scripts/opcodes/comb-get.tz michelson_test_scripts/opcodes/comb-literals.tz michelson_test_scripts/opcodes/comb-set.tz michelson_test_scripts/opcodes/comb-set-2.tz michelson_test_scripts/opcodes/compare.tz michelson_test_scripts/opcodes/compare_big_type.tz michelson_test_scripts/opcodes/compare_big_type2.tz michelson_test_scripts/opcodes/comparisons.tz michelson_test_scripts/opcodes/concat_hello.tz michelson_test_scripts/opcodes/concat_hello_bytes.tz michelson_test_scripts/opcodes/concat_list.tz michelson_test_scripts/opcodes/cons.tz michelson_test_scripts/opcodes/contains_all.tz michelson_test_scripts/opcodes/contract.tz michelson_test_scripts/opcodes/create_contract.tz michelson_test_scripts/opcodes/create_contract_rootname.tz michelson_test_scripts/opcodes/create_contract_rootname_alt.tz michelson_test_scripts/opcodes/create_contract_with_view.tz michelson_test_scripts/opcodes/diff_timestamps.tz michelson_test_scripts/opcodes/dig_eq.tz michelson_test_scripts/opcodes/dign.tz michelson_test_scripts/opcodes/dip.tz michelson_test_scripts/opcodes/dipn.tz michelson_test_scripts/opcodes/dropn.tz michelson_test_scripts/opcodes/dugn.tz michelson_test_scripts/opcodes/dup-n.tz michelson_test_scripts/opcodes/ediv.tz michelson_test_scripts/opcodes/ediv_mutez.tz michelson_test_scripts/opcodes/emit.tz michelson_test_scripts/opcodes/empty_map.tz michelson_test_scripts/opcodes/exec_concat.tz michelson_test_scripts/opcodes/fact.tz michelson_test_scripts/opcodes/first.tz michelson_test_scripts/opcodes/get_and_update_big_map.tz michelson_test_scripts/opcodes/get_and_update_map.tz michelson_test_scripts/opcodes/get_big_map_value.tz michelson_test_scripts/opcodes/get_map_value.tz michelson_test_scripts/opcodes/hash_consistency_checker.tz michelson_test_scripts/opcodes/hash_key.tz michelson_test_scripts/opcodes/hash_string.tz michelson_test_scripts/opcodes/if.tz michelson_test_scripts/opcodes/if_some.tz michelson_test_scripts/opcodes/int.tz michelson_test_scripts/opcodes/iter_fail.tz michelson_test_scripts/opcodes/keccak.tz michelson_test_scripts/opcodes/left_right.tz michelson_test_scripts/opcodes/level.tz michelson_test_scripts/opcodes/list_concat.tz michelson_test_scripts/opcodes/list_concat_bytes.tz michelson_test_scripts/opcodes/list_id.tz michelson_test_scripts/opcodes/list_id_map.tz michelson_test_scripts/opcodes/list_iter.tz michelson_test_scripts/opcodes/list_map_block.tz michelson_test_scripts/opcodes/list_size.tz michelson_test_scripts/opcodes/loop_failwith.tz michelson_test_scripts/opcodes/loop_left.tz michelson_test_scripts/opcodes/loop_left_failwith.tz michelson_test_scripts/opcodes/lsl_bytes_016.tz michelson_test_scripts/opcodes/lsr_bytes_016.tz michelson_test_scripts/opcodes/map_car.tz michelson_test_scripts/opcodes/map_id.tz michelson_test_scripts/opcodes/map_iter.tz michelson_test_scripts/opcodes/map_map.tz michelson_test_scripts/opcodes/map_map_sideeffect.tz michelson_test_scripts/opcodes/map_mem_nat.tz michelson_test_scripts/opcodes/map_mem_string.tz michelson_test_scripts/opcodes/map_size.tz michelson_test_scripts/opcodes/merge_comparable_pairs.tz michelson_test_scripts/opcodes/mul.tz michelson_test_scripts/opcodes/mul_bls12_381_fr.tz michelson_test_scripts/opcodes/mul_bls12_381_g1.tz michelson_test_scripts/opcodes/mul_bls12_381_g2.tz michelson_test_scripts/opcodes/mul_overflow.tz michelson_test_scripts/opcodes/munch.tz michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz michelson_test_scripts/opcodes/neg.tz michelson_test_scripts/opcodes/neg_bls12_381_fr.tz michelson_test_scripts/opcodes/neg_bls12_381_g1.tz michelson_test_scripts/opcodes/neg_bls12_381_g2.tz michelson_test_scripts/opcodes/none.tz michelson_test_scripts/opcodes/noop.tz michelson_test_scripts/opcodes/not.tz michelson_test_scripts/opcodes/not_binary.tz michelson_test_scripts/opcodes/not_bytes_016.tz michelson_test_scripts/opcodes/or.tz michelson_test_scripts/opcodes/or_binary.tz michelson_test_scripts/opcodes/or_bytes_016.tz michelson_test_scripts/opcodes/originate_big_map.tz michelson_test_scripts/opcodes/packunpack.tz michelson_test_scripts/opcodes/packunpack_rev.tz michelson_test_scripts/opcodes/packunpack_rev_cty.tz michelson_test_scripts/opcodes/pair_id.tz michelson_test_scripts/opcodes/pairing_check.tz michelson_test_scripts/opcodes/pexec.tz michelson_test_scripts/opcodes/pexec_2.tz michelson_test_scripts/opcodes/proxy.tz michelson_test_scripts/opcodes/ret_int.tz michelson_test_scripts/opcodes/reverse.tz michelson_test_scripts/opcodes/reverse_loop.tz michelson_test_scripts/opcodes/sapling_empty_state.tz michelson_test_scripts/opcodes/self.tz michelson_test_scripts/opcodes/self_address.tz michelson_test_scripts/opcodes/self_address_after_fib_view.tz michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_address_after_view.tz michelson_test_scripts/opcodes/self_after_fib_view.tz michelson_test_scripts/opcodes/self_after_nonexistent_view.tz michelson_test_scripts/opcodes/self_after_view.tz michelson_test_scripts/opcodes/self_with_default_entrypoint.tz michelson_test_scripts/opcodes/self_with_entrypoint.tz michelson_test_scripts/opcodes/sender.tz michelson_test_scripts/opcodes/sender_after_fib_view.tz michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz michelson_test_scripts/opcodes/sender_after_view.tz michelson_test_scripts/opcodes/set_car.tz michelson_test_scripts/opcodes/set_cdr.tz michelson_test_scripts/opcodes/set_delegate.tz michelson_test_scripts/opcodes/set_id.tz michelson_test_scripts/opcodes/set_iter.tz michelson_test_scripts/opcodes/set_member.tz michelson_test_scripts/opcodes/set_size.tz michelson_test_scripts/opcodes/sets.tz michelson_test_scripts/opcodes/sha3.tz michelson_test_scripts/opcodes/shifts.tz michelson_test_scripts/opcodes/slice.tz michelson_test_scripts/opcodes/slice_bytes.tz michelson_test_scripts/opcodes/slices.tz michelson_test_scripts/opcodes/source.tz michelson_test_scripts/opcodes/split_bytes.tz michelson_test_scripts/opcodes/split_string.tz michelson_test_scripts/opcodes/store_bls12_381_fr.tz michelson_test_scripts/opcodes/store_bls12_381_g1.tz michelson_test_scripts/opcodes/store_bls12_381_g2.tz michelson_test_scripts/opcodes/store_input.tz michelson_test_scripts/opcodes/store_now.tz michelson_test_scripts/opcodes/str_id.tz michelson_test_scripts/opcodes/sub_timestamp_delta.tz michelson_test_scripts/opcodes/subset.tz michelson_test_scripts/opcodes/tez_add_sub.tz michelson_test_scripts/opcodes/ticket_bad.tz michelson_test_scripts/opcodes/ticket_big_store.tz michelson_test_scripts/opcodes/ticket_join.tz michelson_test_scripts/opcodes/ticket_read.tz michelson_test_scripts/opcodes/ticket_split.tz michelson_test_scripts/opcodes/ticket_store.tz michelson_test_scripts/opcodes/ticket_store-2.tz michelson_test_scripts/opcodes/ticketer.tz michelson_test_scripts/opcodes/ticketer-2.tz michelson_test_scripts/opcodes/transfer_amount.tz michelson_test_scripts/opcodes/transfer_tokens.tz michelson_test_scripts/opcodes/uncomb.tz michelson_test_scripts/opcodes/unpair.tz michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz michelson_test_scripts/opcodes/update_big_map.tz michelson_test_scripts/opcodes/utxo_read.tz michelson_test_scripts/opcodes/utxor.tz michelson_test_scripts/opcodes/view_fib.tz michelson_test_scripts/opcodes/view_mutual_recursion.tz michelson_test_scripts/opcodes/view_op_add.tz michelson_test_scripts/opcodes/view_op_constant.tz michelson_test_scripts/opcodes/view_op_id.tz michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz michelson_test_scripts/opcodes/view_op_nonexistent_func.tz michelson_test_scripts/opcodes/view_op_test_step_contants.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz michelson_test_scripts/opcodes/view_rec.tz michelson_test_scripts/opcodes/view_toplevel_lib.tz michelson_test_scripts/opcodes/voting_power.tz michelson_test_scripts/opcodes/xor.tz michelson_test_scripts/opcodes/xor_bytes_016.tz --details --display-names -Well typed (Gas remaining: 1039932.585 units remaining) michelson_test_scripts/attic/accounts.tz -{ parameter - (or (key_hash %Initialize) - (pair %Withdraw (key %from) (pair (mutez %withdraw_amount) (signature %sig)))) ; - storage (map :stored_balance key_hash mutez) ; - code { DUP - /* [ pair (or key_hash (pair key mutez signature)) (map key_hash mutez) - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - CAR - /* [ or key_hash (pair key mutez signature) - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - IF_LEFT - { DUP - /* [ key_hash : key_hash - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DIP 2 - { CDR %stored_balance - /* [ map key_hash mutez ] */ ; - DUP - /* [ map key_hash mutez : map key_hash mutez ] */ } - /* [ key_hash : key_hash : map key_hash mutez : map key_hash mutez ] */ ; - DIP { SWAP /* [ map key_hash mutez : key_hash : map key_hash mutez ] */ } - /* [ key_hash : map key_hash mutez : key_hash : map key_hash mutez ] */ ; - GET @opt_prev_balance - /* [ option mutez : key_hash : map key_hash mutez ] */ ; - IF_SOME - { RENAME @previous_balance - /* [ mutez : key_hash : map key_hash mutez ] */ ; - AMOUNT - /* [ mutez : mutez : key_hash : map key_hash mutez ] */ ; - ADD - /* [ mutez : key_hash : map key_hash mutez ] */ ; - SOME - /* [ option mutez : key_hash : map key_hash mutez ] */ ; - SWAP - /* [ key_hash : option mutez : map key_hash mutez ] */ ; - UPDATE - /* [ map key_hash mutez ] */ ; - NIL operation - /* [ list operation : map key_hash mutez ] */ ; - PAIR - /* [ pair (list operation) (map key_hash mutez) ] */ } - { DIP { AMOUNT - /* [ mutez : map key_hash mutez ] */ ; - SOME - /* [ option mutez : map key_hash mutez ] */ } - /* [ key_hash : option mutez : map key_hash mutez ] */ ; - UPDATE - /* [ map key_hash mutez ] */ ; - NIL operation - /* [ list operation : map key_hash mutez ] */ ; - PAIR - /* [ pair (list operation) (map key_hash mutez) ] */ } } - { DUP - /* [ pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DUP - /* [ pair key mutez signature : pair key mutez signature - : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DUP - /* [ pair key mutez signature : pair key mutez signature - : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DUP - /* [ pair key mutez signature : pair key mutez signature - : pair key mutez signature : pair key mutez signature - : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - CAR %from - /* [ key : pair key mutez signature : pair key mutez signature - : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DIP 2 - { CDAR %withdraw_amount ; - PACK - /* [ bytes : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - BLAKE2B @signed_amount - /* [ bytes : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ } - /* [ key : pair key mutez signature : bytes : pair key mutez signature - : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - DIP { CDDR %sig } - /* [ key : signature : bytes : pair key mutez signature - : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - CHECK_SIGNATURE - /* [ bool : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - IF { /* [ pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ } - { PUSH string - "Bad signature" - /* [ string : pair key mutez signature : pair key mutez signature - : pair (or key_hash (pair key mutez signature)) (map key_hash mutez) ] */ ; - FAILWITH - /* [] */ } ; - DIP 2 - { CDR %stored_balance - /* [ map key_hash mutez ] */ ; - DUP - /* [ map key_hash mutez : map key_hash mutez ] */ } - /* [ pair key mutez signature : pair key mutez signature : map key_hash mutez - : map key_hash mutez ] */ ; - CAR %from - /* [ key : pair key mutez signature : map key_hash mutez : map key_hash mutez ] */ ; - HASH_KEY @from_hash - /* [ key_hash : pair key mutez signature : map key_hash mutez - : map key_hash mutez ] */ ; - DUP - /* [ key_hash : key_hash : pair key mutez signature : map key_hash mutez - : map key_hash mutez ] */ ; - DIP { DIP { SWAP - /* [ map key_hash mutez : pair key mutez signature : map key_hash mutez ] */ } - /* [ key_hash : map key_hash mutez : pair key mutez signature - : map key_hash mutez ] */ ; - SWAP - /* [ map key_hash mutez : key_hash : pair key mutez signature - : map key_hash mutez ] */ } - /* [ key_hash : map key_hash mutez : key_hash : pair key mutez signature - : map key_hash mutez ] */ ; - GET - /* [ option mutez : key_hash : pair key mutez signature : map key_hash mutez ] */ ; - IF_NONE - { PUSH string - "Account does not exist" - /* [ string : key_hash : pair key mutez signature : map key_hash mutez ] */ ; - PAIR - /* [ pair string key_hash : pair key mutez signature : map key_hash mutez ] */ ; - FAILWITH - /* [] */ } - { RENAME @previous_balance - /* [ mutez : key_hash : pair key mutez signature : map key_hash mutez ] */ ; - DIP { DROP /* [ pair key mutez signature : map key_hash mutez ] */ } - /* [ mutez : pair key mutez signature : map key_hash mutez ] */ ; - DUP - /* [ mutez : mutez : pair key mutez signature : map key_hash mutez ] */ ; - DIP 2 - { DUP - /* [ pair key mutez signature : pair key mutez signature : map key_hash mutez ] */ ; - CDAR %withdraw_amount ; - DUP - /* [ mutez : mutez : pair key mutez signature : map key_hash mutez ] */ } - /* [ mutez : mutez : mutez : mutez : pair key mutez signature - : map key_hash mutez ] */ ; - DIP { CMPLT @not_enough } - /* [ mutez : bool : mutez : pair key mutez signature : map key_hash mutez ] */ ; - SWAP - /* [ bool : mutez : mutez : pair key mutez signature : map key_hash mutez ] */ ; - IF { PUSH string - "Not enough funds" - /* [ string : mutez : mutez : pair key mutez signature : map key_hash mutez ] */ ; - FAILWITH - /* [] */ } - { SUB_MUTEZ @new_balance - /* [ option mutez : pair key mutez signature : map key_hash mutez ] */ ; - ASSERT_SOME ; - DIP { DUP - /* [ pair key mutez signature : pair key mutez signature : map key_hash mutez ] */ ; - DIP { SWAP /* [ map key_hash mutez : pair key mutez signature ] */ } - /* [ pair key mutez signature : map key_hash mutez : pair key mutez signature ] */ } - /* [ mutez : pair key mutez signature : map key_hash mutez - : pair key mutez signature ] */ ; - DUP - /* [ mutez : mutez : pair key mutez signature : map key_hash mutez - : pair key mutez signature ] */ ; - PUSH @zero - mutez - 0 - /* [ mutez : mutez : mutez : pair key mutez signature : map key_hash mutez - : pair key mutez signature ] */ ; - CMPEQ @null_balance ; - IF { DROP - /* [ pair key mutez signature : map key_hash mutez : pair key mutez signature ] */ ; - NONE @new_balance - mutez - /* [ option mutez : pair key mutez signature : map key_hash mutez - : pair key mutez signature ] */ } - { SOME @new_balance - /* [ option mutez : pair key mutez signature : map key_hash mutez - : pair key mutez signature ] */ } ; - SWAP - /* [ pair key mutez signature : option mutez : map key_hash mutez - : pair key mutez signature ] */ ; - CAR %from - /* [ key : option mutez : map key_hash mutez : pair key mutez signature ] */ ; - HASH_KEY @from_hash - /* [ key_hash : option mutez : map key_hash mutez : pair key mutez signature ] */ ; - UPDATE - /* [ map key_hash mutez : pair key mutez signature ] */ ; - SWAP - /* [ pair key mutez signature : map key_hash mutez ] */ ; - DUP - /* [ pair key mutez signature : pair key mutez signature : map key_hash mutez ] */ ; - CDAR %withdraw_amount ; - DIP { CAR %from - /* [ key : map key_hash mutez ] */ ; - HASH_KEY @from_hash - /* [ key_hash : map key_hash mutez ] */ ; - IMPLICIT_ACCOUNT @from_account - /* [ contract unit : map key_hash mutez ] */ } - /* [ mutez : contract unit : map key_hash mutez ] */ ; - UNIT - /* [ unit : mutez : contract unit : map key_hash mutez ] */ ; - TRANSFER_TOKENS @withdraw_transfer_op - /* [ operation : map key_hash mutez ] */ ; - NIL operation - /* [ list operation : operation : map key_hash mutez ] */ ; - SWAP - /* [ operation : list operation : map key_hash mutez ] */ ; - CONS - /* [ list operation : map key_hash mutez ] */ ; - PAIR - /* [ pair (list operation) (map key_hash mutez) ] */ } } } } } -Well typed (Gas remaining: 1039996.774 units remaining) michelson_test_scripts/attic/add1.tz -{ parameter int ; - storage int ; - code { CAR - /* [ int ] */ ; - PUSH int 1 - /* [ int : int ] */ ; - ADD - /* [ int ] */ ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039995.973 units remaining) michelson_test_scripts/attic/add1_list.tz -{ parameter (list int) ; - storage (list int) ; - code { CAR - /* [ list int ] */ ; - MAP { PUSH int 1 /* [ int : int ] */ ; ADD /* [ int ] */ } - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039991.203 units remaining) michelson_test_scripts/attic/after_strategy.tz -{ parameter nat ; - storage (pair (pair nat bool) timestamp) ; - code { DUP - /* [ pair nat (pair nat bool) timestamp : pair nat (pair nat bool) timestamp ] */ ; - CAR - /* [ nat : pair nat (pair nat bool) timestamp ] */ ; - DIP { CDDR ; - DUP - /* [ timestamp : timestamp ] */ ; - NOW - /* [ timestamp : timestamp : timestamp ] */ ; - CMPGT } - /* [ nat : bool : timestamp ] */ ; - PAIR - /* [ pair nat bool : timestamp ] */ ; - PAIR - /* [ pair (pair nat bool) timestamp ] */ ; - NIL operation - /* [ list operation : pair (pair nat bool) timestamp ] */ ; - PAIR - /* [ pair (list operation) (pair nat bool) timestamp ] */ } } -Well typed (Gas remaining: 1039995.941 units remaining) michelson_test_scripts/attic/always.tz -{ parameter nat ; - storage (pair nat bool) ; - code { CAR - /* [ nat ] */ ; - PUSH bool True - /* [ bool : nat ] */ ; - SWAP - /* [ nat : bool ] */ ; - PAIR - /* [ pair nat bool ] */ ; - NIL operation - /* [ list operation : pair nat bool ] */ ; - PAIR - /* [ pair (list operation) nat bool ] */ } } -Well typed (Gas remaining: 1039993.459 units remaining) michelson_test_scripts/attic/append.tz -{ parameter (pair (list int) (list int)) ; - storage (list int) ; - code { CAR - /* [ pair (list int) (list int) ] */ ; - UNPAIR - /* [ list int : list int ] */ ; - NIL int - /* [ list int : list int : list int ] */ ; - SWAP - /* [ list int : list int : list int ] */ ; - ITER { CONS /* [ list int : list int ] */ } - /* [ list int : list int ] */ ; - ITER { CONS /* [ list int ] */ } - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039993.870 units remaining) michelson_test_scripts/attic/at_least.tz -{ parameter unit ; - storage mutez ; - code { CDR - /* [ mutez ] */ ; - DUP - /* [ mutez : mutez ] */ ; - AMOUNT - /* [ mutez : mutez : mutez ] */ ; - CMPLT ; - IF { FAIL } - { NIL operation - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } } -Well typed (Gas remaining: 1039974.418 units remaining) michelson_test_scripts/attic/auction.tz -{ parameter key_hash ; - storage (pair timestamp (pair mutez key_hash)) ; - code { DUP - /* [ pair key_hash timestamp mutez key_hash - : pair key_hash timestamp mutez key_hash ] */ ; - CDAR ; - DUP - /* [ timestamp : timestamp : pair key_hash timestamp mutez key_hash ] */ ; - NOW - /* [ timestamp : timestamp : timestamp - : pair key_hash timestamp mutez key_hash ] */ ; - CMPGT ; - IF { FAIL } { /* [ timestamp : pair key_hash timestamp mutez key_hash ] */ } ; - SWAP - /* [ pair key_hash timestamp mutez key_hash : timestamp ] */ ; - DUP - /* [ pair key_hash timestamp mutez key_hash - : pair key_hash timestamp mutez key_hash : timestamp ] */ ; - CAR - /* [ key_hash : pair key_hash timestamp mutez key_hash : timestamp ] */ ; - DIP { CDDR } - /* [ key_hash : pair mutez key_hash : timestamp ] */ ; - AMOUNT - /* [ mutez : key_hash : pair mutez key_hash : timestamp ] */ ; - PAIR - /* [ pair mutez key_hash : pair mutez key_hash : timestamp ] */ ; - SWAP - /* [ pair mutez key_hash : pair mutez key_hash : timestamp ] */ ; - DIP { SWAP - /* [ timestamp : pair mutez key_hash ] */ ; - PAIR - /* [ pair timestamp mutez key_hash ] */ } - /* [ pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - DUP - /* [ pair mutez key_hash : pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - CAR - /* [ mutez : pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - AMOUNT - /* [ mutez : mutez : pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - CMPLE ; - IF { FAIL } { /* [ pair mutez key_hash : pair timestamp mutez key_hash ] */ } ; - DUP - /* [ pair mutez key_hash : pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - CAR - /* [ mutez : pair mutez key_hash : pair timestamp mutez key_hash ] */ ; - DIP { CDR - /* [ key_hash : pair timestamp mutez key_hash ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : pair timestamp mutez key_hash ] */ } - /* [ mutez : contract unit : pair timestamp mutez key_hash ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair timestamp mutez key_hash ] */ ; - TRANSFER_TOKENS - /* [ operation : pair timestamp mutez key_hash ] */ ; - NIL operation - /* [ list operation : operation : pair timestamp mutez key_hash ] */ ; - SWAP - /* [ operation : list operation : pair timestamp mutez key_hash ] */ ; - CONS - /* [ list operation : pair timestamp mutez key_hash ] */ ; - PAIR - /* [ pair (list operation) timestamp mutez key_hash ] */ } } -Well typed (Gas remaining: 1039974.993 units remaining) michelson_test_scripts/attic/bad_lockup.tz -{ parameter unit ; - storage (pair timestamp (pair address address)) ; - code { CDR - /* [ pair timestamp address address ] */ ; - DUP - /* [ pair timestamp address address : pair timestamp address address ] */ ; - CAR - /* [ timestamp : pair timestamp address address ] */ ; - NOW - /* [ timestamp : timestamp : pair timestamp address address ] */ ; - CMPLT ; - IF { FAIL } { /* [ pair timestamp address address ] */ } ; - DUP - /* [ pair timestamp address address : pair timestamp address address ] */ ; - CDAR ; - CONTRACT unit - /* [ option (contract unit) : pair timestamp address address ] */ ; - ASSERT_SOME ; - PUSH mutez 100000000 - /* [ mutez : contract unit : pair timestamp address address ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair timestamp address address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair timestamp address address ] */ ; - SWAP - /* [ pair timestamp address address : operation ] */ ; - DUP - /* [ pair timestamp address address : pair timestamp address address - : operation ] */ ; - CDDR ; - CONTRACT - unit - /* [ option (contract unit) : pair timestamp address address : operation ] */ ; - ASSERT_SOME ; - PUSH mutez - 100000000 - /* [ mutez : contract unit : pair timestamp address address : operation ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair timestamp address address : operation ] */ ; - TRANSFER_TOKENS - /* [ operation : pair timestamp address address : operation ] */ ; - DIP { SWAP /* [ operation : pair timestamp address address ] */ } - /* [ operation : operation : pair timestamp address address ] */ ; - NIL operation - /* [ list operation : operation : operation : pair timestamp address address ] */ ; - SWAP - /* [ operation : list operation : operation : pair timestamp address address ] */ ; - CONS - /* [ list operation : operation : pair timestamp address address ] */ ; - SWAP - /* [ operation : list operation : pair timestamp address address ] */ ; - CONS - /* [ list operation : pair timestamp address address ] */ ; - PAIR - /* [ pair (list operation) timestamp address address ] */ } } -Well typed (Gas remaining: 1039987.459 units remaining) michelson_test_scripts/attic/big_map_union.tz -{ parameter (list (pair string int)) ; - storage (pair (big_map string int) unit) ; - code { UNPAPAIR ; - ITER { UNPAIR - /* [ string : int : big_map string int : unit ] */ ; - DUP 3 - /* [ big_map string int : string : int : big_map string int : unit ] */ ; - DUP 2 - /* [ string : big_map string int : string : int : big_map string int : unit ] */ ; - GET - /* [ option int : string : int : big_map string int : unit ] */ ; - IF_NONE - { PUSH int 0 /* [ int : string : int : big_map string int : unit ] */ } - { /* [ int : string : int : big_map string int : unit ] */ } ; - SWAP - /* [ string : int : int : big_map string int : unit ] */ ; - DIP { ADD - /* [ int : big_map string int : unit ] */ ; - SOME - /* [ option int : big_map string int : unit ] */ } - /* [ string : option int : big_map string int : unit ] */ ; - UPDATE - /* [ big_map string int : unit ] */ } - /* [ big_map string int : unit ] */ ; - PAIR - /* [ pair (big_map string int) unit ] */ ; - NIL operation - /* [ list operation : pair (big_map string int) unit ] */ ; - PAIR - /* [ pair (list operation) (big_map string int) unit ] */ } } -Well typed (Gas remaining: 1039995.385 units remaining) michelson_test_scripts/attic/cadr_annotation.tz -{ parameter (pair (pair %p1 unit (string %no_name)) bool) ; - storage unit ; - code { CAR @param - /* [ pair (pair unit string) bool ] */ ; - CADR @name %no_name ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.578 units remaining) michelson_test_scripts/attic/concat.tz -{ parameter string ; - storage string ; - code { DUP - /* [ pair string string : pair string string ] */ ; - DIP { CDR - /* [ string ] */ ; - NIL string - /* [ list string : string ] */ ; - SWAP - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ } - /* [ pair string string : list string ] */ ; - CAR - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ ; - CONCAT - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039990.576 units remaining) michelson_test_scripts/attic/conditionals.tz -{ parameter (or string (option int)) ; - storage string ; - code { CAR - /* [ or string (option int) ] */ ; - IF_LEFT - { /* [ string ] */ } - { IF_NONE - { FAIL } - { PUSH int 0 - /* [ int : int ] */ ; - CMPGT ; - IF { FAIL } { PUSH string "" /* [ string ] */ } } } ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039993.758 units remaining) michelson_test_scripts/attic/cons_twice.tz -{ parameter nat ; - storage (list nat) ; - code { DUP - /* [ pair nat (list nat) : pair nat (list nat) ] */ ; - CAR - /* [ nat : pair nat (list nat) ] */ ; - DIP { CDR /* [ list nat ] */ } - /* [ nat : list nat ] */ ; - DUP - /* [ nat : nat : list nat ] */ ; - DIP { CONS /* [ list nat ] */ } - /* [ nat : list nat ] */ ; - CONS - /* [ list nat ] */ ; - NIL operation - /* [ list operation : list nat ] */ ; - PAIR - /* [ pair (list operation) (list nat) ] */ } } -Well typed (Gas remaining: 1039976.109 units remaining) michelson_test_scripts/attic/cps_fact.tz -{ storage nat ; - parameter nat ; - code { UNPAIR - /* [ nat : nat ] */ ; - DIP { SELF - /* [ contract nat : nat ] */ ; - ADDRESS - /* [ address : nat ] */ ; - SENDER - /* [ address : address : nat ] */ ; - IFCMPEQ { /* [ nat ] */ } { DROP /* [] */ ; PUSH @storage nat 1 /* [ nat ] */ } } - /* [ nat : nat ] */ ; - DUP - /* [ nat : nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat : nat ] */ ; - IFCMPGE - { DROP - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } - { PUSH nat 1 - /* [ nat : nat : nat ] */ ; - SWAP - /* [ nat : nat : nat ] */ ; - SUB @parameter - /* [ int : nat ] */ ; - ISNAT - /* [ option nat : nat ] */ ; - IF_NONE - { NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } - { DUP - /* [ nat : nat : nat ] */ ; - DIP { PUSH nat 1 - /* [ nat : nat : nat ] */ ; - ADD - /* [ nat : nat ] */ ; - MUL @storage - /* [ nat ] */ } - /* [ nat : nat ] */ ; - SWAP - /* [ nat : nat ] */ ; - DIP { DIP { SELF /* [ contract nat ] */ ; PUSH mutez 0 /* [ mutez : contract nat ] */ } - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ } - /* [ nat : list operation ] */ ; - SWAP - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } } } -Well typed (Gas remaining: 1039989.990 units remaining) michelson_test_scripts/attic/create_add1_lists.tz -{ parameter unit ; - storage address ; - code { DROP - /* [] */ ; - NIL int /* [ list int ] */ - /* [ list int ] */ ; - AMOUNT - /* [ list int ] */ ; - NONE key_hash /* [ int : int ] */ - /* [ option key_hash : mutez : list int ] */ ; - CREATE_CONTRACT - { parameter (list int /* [ list operation : list int ] */) - /* [ int ] */ ; - storage (list int) - /* [ pair (list operation) (list int) ] */ ; - code { CAR ; MAP { PUSH int 1 ; ADD } ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039975.804 units remaining) michelson_test_scripts/attic/data_publisher.tz -{ parameter (pair signature (pair string nat)) ; - storage (pair (pair key nat) string) ; - code { DUP - /* [ pair (pair signature string nat) (pair key nat) string - : pair (pair signature string nat) (pair key nat) string ] */ ; - CAR - /* [ pair signature string nat - : pair (pair signature string nat) (pair key nat) string ] */ ; - DIP { CDR - /* [ pair (pair key nat) string ] */ ; - DUP - /* [ pair (pair key nat) string : pair (pair key nat) string ] */ } - /* [ pair signature string nat : pair (pair key nat) string - : pair (pair key nat) string ] */ ; - SWAP - /* [ pair (pair key nat) string : pair signature string nat - : pair (pair key nat) string ] */ ; - DIP { DUP - /* [ pair signature string nat : pair signature string nat - : pair (pair key nat) string ] */ } - /* [ pair (pair key nat) string : pair signature string nat - : pair signature string nat : pair (pair key nat) string ] */ ; - CAAR ; - DIP { DUP - /* [ pair signature string nat : pair signature string nat - : pair signature string nat : pair (pair key nat) string ] */ ; - CAR - /* [ signature : pair signature string nat : pair signature string nat - : pair (pair key nat) string ] */ ; - DIP { CDR - /* [ pair string nat : pair signature string nat : pair (pair key nat) string ] */ ; - PACK - /* [ bytes : pair signature string nat : pair (pair key nat) string ] */ ; - BLAKE2B - /* [ bytes : pair signature string nat : pair (pair key nat) string ] */ } - /* [ signature : bytes : pair signature string nat - : pair (pair key nat) string ] */ } - /* [ key : signature : bytes : pair signature string nat - : pair (pair key nat) string ] */ ; - CHECK_SIGNATURE - /* [ bool : pair signature string nat : pair (pair key nat) string ] */ ; - IF { CDR - /* [ pair string nat : pair (pair key nat) string ] */ ; - DUP - /* [ pair string nat : pair string nat : pair (pair key nat) string ] */ ; - DIP { CAR - /* [ string : pair (pair key nat) string ] */ ; - DIP { CAAR } - /* [ string : key ] */ } - /* [ pair string nat : string : key ] */ ; - CDR - /* [ nat : string : key ] */ ; - PUSH nat 1 - /* [ nat : nat : string : key ] */ ; - ADD - /* [ nat : string : key ] */ ; - DIP { SWAP /* [ key : string ] */ } - /* [ nat : key : string ] */ ; - SWAP - /* [ key : nat : string ] */ ; - PAIR - /* [ pair key nat : string ] */ ; - PAIR - /* [ pair (pair key nat) string ] */ ; - NIL operation - /* [ list operation : pair (pair key nat) string ] */ ; - PAIR - /* [ pair (list operation) (pair key nat) string ] */ } - { FAIL } } } -Well typed (Gas remaining: 1039983.006 units remaining) michelson_test_scripts/attic/dispatch.tz -{ parameter (or string (pair string (lambda unit string))) ; - storage (pair string (map string (lambda unit string))) ; - code { DUP - /* [ pair (or string (pair string (lambda unit string))) - string - (map string (lambda unit string)) - : pair (or string (pair string (lambda unit string))) - string - (map string (lambda unit string)) ] */ ; - DIP { CDDR } - /* [ pair (or string (pair string (lambda unit string))) - string - (map string (lambda unit string)) : map string (lambda unit string) ] */ ; - CAR - /* [ or string (pair string (lambda unit string)) - : map string (lambda unit string) ] */ ; - IF_LEFT - { DIP { DUP - /* [ map string (lambda unit string) : map string (lambda unit string) ] */ } - /* [ string : map string (lambda unit string) - : map string (lambda unit string) ] */ ; - GET - /* [ option (lambda unit string) : map string (lambda unit string) ] */ ; - IF_NONE - { FAIL } - { /* [ lambda unit string : map string (lambda unit string) ] */ } ; - UNIT - /* [ unit : lambda unit string : map string (lambda unit string) ] */ ; - EXEC - /* [ string : map string (lambda unit string) ] */ } - { DUP - /* [ pair string (lambda unit string) : pair string (lambda unit string) - : map string (lambda unit string) ] */ ; - CAR - /* [ string : pair string (lambda unit string) - : map string (lambda unit string) ] */ ; - DIP { CDR - /* [ lambda unit string : map string (lambda unit string) ] */ ; - SOME - /* [ option (lambda unit string) : map string (lambda unit string) ] */ } - /* [ string : option (lambda unit string) : map string (lambda unit string) ] */ ; - UPDATE - /* [ map string (lambda unit string) ] */ ; - PUSH string "" - /* [ string : map string (lambda unit string) ] */ } ; - PAIR - /* [ pair string (map string (lambda unit string)) ] */ ; - NIL operation - /* [ list operation : pair string (map string (lambda unit string)) ] */ ; - PAIR - /* [ pair (list operation) string (map string (lambda unit string)) ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/attic/empty.tz -{ parameter unit ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.067 units remaining) michelson_test_scripts/attic/fail_amount.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - AMOUNT - /* [ mutez ] */ ; - PUSH mutez 10000000 - /* [ mutez : mutez ] */ ; - CMPGT ; - IF { FAIL } { /* [] */ } ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039988.070 units remaining) michelson_test_scripts/attic/faucet.tz -{ parameter key_hash ; - storage timestamp ; - code { UNPAIR - /* [ key_hash : timestamp ] */ ; - SWAP - /* [ timestamp : key_hash ] */ ; - PUSH int 300 - /* [ int : timestamp : key_hash ] */ ; - ADD @FIVE_MINUTES_LATER - /* [ timestamp : key_hash ] */ ; - NOW - /* [ timestamp : timestamp : key_hash ] */ ; - ASSERT_CMPGE ; - IMPLICIT_ACCOUNT - /* [ contract unit ] */ ; - PUSH mutez 1000000 - /* [ mutez : contract unit ] */ ; - UNIT - /* [ unit : mutez : contract unit ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - DIP { NOW /* [ timestamp ] */ } - /* [ list operation : timestamp ] */ ; - PAIR - /* [ pair (list operation) timestamp ] */ } } -Well typed (Gas remaining: 1039670.292 units remaining) michelson_test_scripts/attic/forward.tz -{ parameter (or string nat) ; - storage - (pair (pair nat (pair mutez mutez)) - (pair (pair nat (pair timestamp timestamp)) - (pair (pair mutez mutez) (pair (pair address address) address)))) ; - code { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDADDR ; - PUSH int - 86400 - /* [ int : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ timestamp : int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NOW - /* [ timestamp : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CAR - /* [ or string nat - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF_LEFT - { DUP - /* [ string : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH string - "buyer" - /* [ string : string : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - EQ - /* [ bool : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DROP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADAR ; - DIP { AMOUNT - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADDR } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH nat - 0 - /* [ nat : pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair nat mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CDDR } - /* [ pair nat mutez mutez - : pair (pair nat timestamp timestamp) (pair mutez mutez) (pair address address) address ] */ ; - PAIR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { PUSH string - "seller" - /* [ string : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - EQ - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADDR ; - DIP { AMOUNT - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADAR } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH nat - 0 - /* [ nat : pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair nat mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CDDR } - /* [ pair nat mutez mutez - : pair (pair nat timestamp timestamp) (pair mutez mutez) (pair address address) address ] */ ; - PAIR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { FAIL } } } - { FAIL } } - { BALANCE - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH mutez - 0 - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IFCMPEQ - { FAIL } - { /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } ; - DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDAAR ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDADR } - /* [ nat : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - MUL - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH nat - 2 - /* [ nat : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - MUL - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - BALANCE - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { CDR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CADAR ; - DIP { DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDAAR } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ operation : list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CONS - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - CADDR ; - DIP { DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - CDDDADR } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - SWAP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - CADAR ; - DIP { DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - CADDR } - /* [ mutez : mutez - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - ADD - /* [ mutez - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - BALANCE - /* [ mutez : mutez - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - SUB_MUTEZ - /* [ option mutez - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - ASSERT_SOME ; - DIP { DUP - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - CDDDDR } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address : list operation ] */ ; - DIP { SWAP - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ operation : list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CONS - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDADAR ; - NOW - /* [ timestamp : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { FAIL } - { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDADAR ; - PUSH int - 86400 - /* [ int : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NOW - /* [ timestamp : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CAR - /* [ or string nat - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF_LEFT - { PUSH string - "buyer" - /* [ string : string - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - EQ - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADAR ; - DIP { AMOUNT - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DUP - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP 2 - { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDAAR ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDAAR } - /* [ nat : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - MUL - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - GT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { FAIL } - { /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } } - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADDR } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH nat - 0 - /* [ nat : pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair nat mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CDDR } - /* [ pair nat mutez mutez - : pair (pair nat timestamp timestamp) (pair mutez mutez) (pair address address) address ] */ ; - PAIR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { FAIL } } - { FAIL } } - { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDAAR ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDAAR } - /* [ nat : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - MUL - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADAR } - /* [ mutez : mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NEQ - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { BALANCE - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDDADR } - /* [ mutez : address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP 2 - { CDR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ operation : list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CONS - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDADAR ; - PUSH int - 86400 - /* [ int : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PUSH int - 86400 - /* [ int : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NOW - /* [ timestamp : timestamp - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDDDR ; - SENDER - /* [ address : address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NEQ - /* [ bool - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { FAIL } - { /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } ; - DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CAR - /* [ or string nat - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF_LEFT - { FAIL } - { DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDAAR } - /* [ nat : nat - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ADD - /* [ nat - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDADR } - /* [ nat : pair mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair nat mutez mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CDDR } - /* [ pair nat mutez mutez - : pair (pair nat timestamp timestamp) (pair mutez mutez) (pair address address) address ] */ ; - PAIR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - UNIT - /* [ unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DUP - /* [ pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDAAR ; - DIP { DUP - /* [ pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDAAR } - /* [ nat : nat - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - COMPARE - /* [ int - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - LT - /* [ bool - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - IF { CDR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { BALANCE - /* [ mutez - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDDADR } - /* [ mutez : address - : pair unit - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP 2 - { CDR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ operation : list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CONS - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } } ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - { BALANCE - /* [ mutez - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { DUP - /* [ pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CDDDDAAR } - /* [ mutez : address - : pair (or string nat) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP 2 - { CDR - /* [ pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } - /* [ mutez : address - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - SWAP - /* [ operation : list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - CONS - /* [ list operation - : pair (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ ; - PAIR - /* [ pair (list operation) - (pair nat mutez mutez) - (pair nat timestamp timestamp) - (pair mutez mutez) - (pair address address) - address ] */ } } } } } } } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/attic/id.tz -{ parameter string ; - storage string ; - code { CAR - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039995.465 units remaining) michelson_test_scripts/attic/infinite_loop.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bool True - /* [ bool ] */ ; - LOOP { PUSH bool True /* [ bool ] */ } - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039976.745 units remaining) michelson_test_scripts/attic/insertion_sort.tz -{ parameter (list int) ; - storage (list int) ; - code { CAR - /* [ list int ] */ ; - NIL int - /* [ list int : list int ] */ ; - SWAP - /* [ list int : list int ] */ ; - ITER { SWAP - /* [ list int : int ] */ ; - DIP 2 { NIL int /* [ list int ] */ } - /* [ list int : int : list int ] */ ; - PUSH bool True - /* [ bool : list int : int : list int ] */ ; - LOOP { IF_CONS - { SWAP - /* [ list int : int : int : list int ] */ ; - DIP { DUP - /* [ int : int : int : list int ] */ ; - DIP 2 { DUP /* [ int : int : list int ] */ } - /* [ int : int : int : int : list int ] */ ; - DIP { CMPLT } - /* [ int : bool : int : list int ] */ ; - SWAP - /* [ bool : int : int : list int ] */ } - /* [ list int : bool : int : int : list int ] */ ; - SWAP - /* [ bool : list int : int : int : list int ] */ ; - IF { DIP { SWAP - /* [ int : int : list int ] */ ; - DIP { CONS /* [ list int ] */ } - /* [ int : list int ] */ } - /* [ list int : int : list int ] */ ; - PUSH bool True - /* [ bool : list int : int : list int ] */ } - { SWAP - /* [ int : list int : int : list int ] */ ; - CONS - /* [ list int : int : list int ] */ ; - PUSH bool False - /* [ bool : list int : int : list int ] */ } } - { NIL int - /* [ list int : int : list int ] */ ; - PUSH bool False - /* [ bool : list int : int : list int ] */ } } - /* [ list int : int : list int ] */ ; - SWAP - /* [ int : list int : list int ] */ ; - CONS - /* [ list int : list int ] */ ; - SWAP - /* [ list int : list int ] */ ; - ITER { CONS /* [ list int ] */ } - /* [ list int ] */ } - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039970.043 units remaining) michelson_test_scripts/attic/int_publisher.tz -{ parameter (option (pair signature int)) ; - storage (pair key int) ; - code { DUP - /* [ pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - DUP - /* [ pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - CAR - /* [ option (pair signature int) : pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - IF_NONE - { PUSH mutez - 1000000 - /* [ mutez : pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - AMOUNT - /* [ mutez : mutez : pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - CMPLE ; - IF { FAIL } - { /* [ pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ } ; - CDR - /* [ pair key int : pair (option (pair signature int)) key int ] */ ; - DIP { CDDR } - /* [ pair key int : int ] */ } - { DUP - /* [ pair signature int : pair signature int - : pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - DIP { SWAP - /* [ pair (option (pair signature int)) key int : pair signature int - : pair (option (pair signature int)) key int ] */ } - /* [ pair signature int : pair (option (pair signature int)) key int - : pair signature int : pair (option (pair signature int)) key int ] */ ; - SWAP - /* [ pair (option (pair signature int)) key int : pair signature int - : pair signature int : pair (option (pair signature int)) key int ] */ ; - CDAR ; - DIP { DUP - /* [ pair signature int : pair signature int : pair signature int - : pair (option (pair signature int)) key int ] */ ; - CAR - /* [ signature : pair signature int : pair signature int - : pair (option (pair signature int)) key int ] */ ; - DIP { CDR - /* [ int : pair signature int : pair (option (pair signature int)) key int ] */ ; - PACK - /* [ bytes : pair signature int : pair (option (pair signature int)) key int ] */ ; - BLAKE2B - /* [ bytes : pair signature int : pair (option (pair signature int)) key int ] */ } - /* [ signature : bytes : pair signature int - : pair (option (pair signature int)) key int ] */ } - /* [ key : signature : bytes : pair signature int - : pair (option (pair signature int)) key int ] */ ; - CHECK_SIGNATURE - /* [ bool : pair signature int : pair (option (pair signature int)) key int ] */ ; - IF { CDR - /* [ int : pair (option (pair signature int)) key int ] */ ; - SWAP - /* [ pair (option (pair signature int)) key int : int ] */ ; - DIP { DUP /* [ int : int ] */ } - /* [ pair (option (pair signature int)) key int : int : int ] */ ; - CDAR ; - PAIR - /* [ pair key int : int ] */ } - { DROP - /* [ pair (option (pair signature int)) key int ] */ ; - DUP - /* [ pair (option (pair signature int)) key int - : pair (option (pair signature int)) key int ] */ ; - CDR - /* [ pair key int : pair (option (pair signature int)) key int ] */ ; - DIP { CDDR } - /* [ pair key int : int ] */ } } ; - DIP { DROP /* [] */ } - /* [ pair key int ] */ ; - NIL operation - /* [ list operation : pair key int ] */ ; - PAIR - /* [ pair (list operation) key int ] */ } } -Well typed (Gas remaining: 1039974.327 units remaining) michelson_test_scripts/attic/king_of_tez.tz -{ parameter key_hash ; - storage (pair timestamp (pair mutez key_hash)) ; - code { DUP - /* [ pair key_hash timestamp mutez key_hash - : pair key_hash timestamp mutez key_hash ] */ ; - CDAR ; - NOW - /* [ timestamp : timestamp : pair key_hash timestamp mutez key_hash ] */ ; - CMPGT ; - IF { CAR - /* [ key_hash ] */ ; - AMOUNT - /* [ mutez : key_hash ] */ ; - PAIR - /* [ pair mutez key_hash ] */ ; - NOW - /* [ timestamp : pair mutez key_hash ] */ ; - PUSH int 604800 - /* [ int : timestamp : pair mutez key_hash ] */ ; - ADD - /* [ timestamp : pair mutez key_hash ] */ ; - PAIR - /* [ pair timestamp mutez key_hash ] */ ; - NIL operation - /* [ list operation : pair timestamp mutez key_hash ] */ } - { DUP - /* [ pair key_hash timestamp mutez key_hash - : pair key_hash timestamp mutez key_hash ] */ ; - CDDAR ; - AMOUNT - /* [ mutez : mutez : pair key_hash timestamp mutez key_hash ] */ ; - CMPLT ; - IF { FAIL } - { CAR - /* [ key_hash ] */ ; - DUP - /* [ key_hash : key_hash ] */ ; - DIP { AMOUNT - /* [ mutez : key_hash ] */ ; - PAIR - /* [ pair mutez key_hash ] */ ; - NOW - /* [ timestamp : pair mutez key_hash ] */ ; - PUSH int 604800 - /* [ int : timestamp : pair mutez key_hash ] */ ; - ADD - /* [ timestamp : pair mutez key_hash ] */ ; - PAIR - /* [ pair timestamp mutez key_hash ] */ } - /* [ key_hash : pair timestamp mutez key_hash ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : pair timestamp mutez key_hash ] */ ; - AMOUNT - /* [ mutez : contract unit : pair timestamp mutez key_hash ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair timestamp mutez key_hash ] */ ; - TRANSFER_TOKENS - /* [ operation : pair timestamp mutez key_hash ] */ ; - NIL operation - /* [ list operation : operation : pair timestamp mutez key_hash ] */ ; - SWAP - /* [ operation : list operation : pair timestamp mutez key_hash ] */ ; - CONS - /* [ list operation : pair timestamp mutez key_hash ] */ } } ; - PAIR - /* [ pair (list operation) timestamp mutez key_hash ] */ } } -Well typed (Gas remaining: 1039985.482 units remaining) michelson_test_scripts/attic/list_of_transactions.tz -{ parameter unit ; - storage (list address) ; - code { CDR - /* [ list address ] */ ; - DUP - /* [ list address : list address ] */ ; - DIP { NIL operation /* [ list operation : list address ] */ } - /* [ list address : list operation : list address ] */ ; - PUSH bool True - /* [ bool : list address : list operation : list address ] */ ; - LOOP { IF_CONS - { CONTRACT - unit - /* [ option (contract unit) : list address : list operation : list address ] */ ; - ASSERT_SOME ; - PUSH mutez - 1000000 - /* [ mutez : contract unit : list address : list operation : list address ] */ ; - UNIT - /* [ unit : mutez : contract unit : list address : list operation - : list address ] */ ; - TRANSFER_TOKENS - /* [ operation : list address : list operation : list address ] */ ; - SWAP - /* [ list address : operation : list operation : list address ] */ ; - DIP { CONS /* [ list operation : list address ] */ } - /* [ list address : list operation : list address ] */ ; - PUSH bool True - /* [ bool : list address : list operation : list address ] */ } - { NIL address - /* [ list address : list operation : list address ] */ ; - PUSH bool False - /* [ bool : list address : list operation : list address ] */ } } - /* [ list address : list operation : list address ] */ ; - DROP - /* [ list operation : list address ] */ ; - PAIR - /* [ pair (list operation) (list address) ] */ } } -Well typed (Gas remaining: 1039958.584 units remaining) michelson_test_scripts/attic/queue.tz -{ parameter (option string) ; - storage (pair (option string) (pair (pair nat nat) (map nat string))) ; - code { DUP - /* [ pair (option string) (option string) (pair nat nat) (map nat string) - : pair (option string) (option string) (pair nat nat) (map nat string) ] */ ; - CAR - /* [ option string - : pair (option string) (option string) (pair nat nat) (map nat string) ] */ ; - IF_NONE - { CDDR ; - DUP - /* [ pair (pair nat nat) (map nat string) - : pair (pair nat nat) (map nat string) ] */ ; - CAR - /* [ pair nat nat : pair (pair nat nat) (map nat string) ] */ ; - DIP { CDR /* [ map nat string ] */ ; DUP /* [ map nat string : map nat string ] */ } - /* [ pair nat nat : map nat string : map nat string ] */ ; - DUP - /* [ pair nat nat : pair nat nat : map nat string : map nat string ] */ ; - CAR - /* [ nat : pair nat nat : map nat string : map nat string ] */ ; - SWAP - /* [ pair nat nat : nat : map nat string : map nat string ] */ ; - DIP { GET /* [ option string : map nat string ] */ } - /* [ pair nat nat : option string : map nat string ] */ ; - SWAP - /* [ option string : pair nat nat : map nat string ] */ ; - IF_NONE - { NONE string - /* [ option string : pair nat nat : map nat string ] */ ; - DIP { PAIR /* [ pair (pair nat nat) (map nat string) ] */ } - /* [ option string : pair (pair nat nat) (map nat string) ] */ ; - PAIR - /* [ pair (option string) (pair nat nat) (map nat string) ] */ } - { SOME - /* [ option string : pair nat nat : map nat string ] */ ; - DIP { DUP - /* [ pair nat nat : pair nat nat : map nat string ] */ ; - DIP { CAR - /* [ nat : map nat string ] */ ; - DIP { NONE string /* [ option string : map nat string ] */ } - /* [ nat : option string : map nat string ] */ ; - UPDATE - /* [ map nat string ] */ } - /* [ pair nat nat : map nat string ] */ ; - DUP - /* [ pair nat nat : pair nat nat : map nat string ] */ ; - CAR - /* [ nat : pair nat nat : map nat string ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat nat : map nat string ] */ ; - ADD - /* [ nat : pair nat nat : map nat string ] */ ; - DIP { CDR /* [ nat : map nat string ] */ } - /* [ nat : nat : map nat string ] */ ; - PAIR - /* [ pair nat nat : map nat string ] */ ; - PAIR - /* [ pair (pair nat nat) (map nat string) ] */ } - /* [ option string : pair (pair nat nat) (map nat string) ] */ ; - PAIR - /* [ pair (option string) (pair nat nat) (map nat string) ] */ } } - { DIP { DUP - /* [ pair (option string) (option string) (pair nat nat) (map nat string) - : pair (option string) (option string) (pair nat nat) (map nat string) ] */ ; - CDDAR ; - DIP { CDDDR } - /* [ pair nat nat : map nat string ] */ ; - DUP - /* [ pair nat nat : pair nat nat : map nat string ] */ } - /* [ string : pair nat nat : pair nat nat : map nat string ] */ ; - SWAP - /* [ pair nat nat : string : pair nat nat : map nat string ] */ ; - CAR - /* [ nat : string : pair nat nat : map nat string ] */ ; - DIP { SOME - /* [ option string : pair nat nat : map nat string ] */ ; - SWAP - /* [ pair nat nat : option string : map nat string ] */ ; - CDR - /* [ nat : option string : map nat string ] */ ; - DUP - /* [ nat : nat : option string : map nat string ] */ ; - DIP { UPDATE /* [ map nat string ] */ } - /* [ nat : map nat string ] */ ; - PUSH nat 1 - /* [ nat : nat : map nat string ] */ ; - ADD - /* [ nat : map nat string ] */ } - /* [ nat : nat : map nat string ] */ ; - PAIR - /* [ pair nat nat : map nat string ] */ ; - PAIR - /* [ pair (pair nat nat) (map nat string) ] */ ; - NONE string - /* [ option string : pair (pair nat nat) (map nat string) ] */ ; - PAIR - /* [ pair (option string) (pair nat nat) (map nat string) ] */ } ; - NIL operation - /* [ list operation : pair (option string) (pair nat nat) (map nat string) ] */ ; - PAIR - /* [ pair (list operation) (option string) (pair nat nat) (map nat string) ] */ } } -Well typed (Gas remaining: 1039978.486 units remaining) michelson_test_scripts/attic/reduce_map.tz -{ parameter (pair (lambda int int) (list int)) ; - storage (list int) ; - code { DIP { NIL int /* [ list int ] */ } - /* [ pair (pair (lambda int int) (list int)) (list int) : list int ] */ ; - CAR - /* [ pair (lambda int int) (list int) : list int ] */ ; - DUP - /* [ pair (lambda int int) (list int) : pair (lambda int int) (list int) - : list int ] */ ; - DIP { CAR - /* [ lambda int int : list int ] */ ; - PAIR - /* [ pair (lambda int int) (list int) ] */ } - /* [ pair (lambda int int) (list int) : pair (lambda int int) (list int) ] */ ; - CDR - /* [ list int : pair (lambda int int) (list int) ] */ ; - ITER { PAIR - /* [ pair int (lambda int int) (list int) ] */ ; - DUP - /* [ pair int (lambda int int) (list int) - : pair int (lambda int int) (list int) ] */ ; - CDAR ; - DIP { DUP - /* [ pair int (lambda int int) (list int) - : pair int (lambda int int) (list int) ] */ ; - DIP { CDAR } - /* [ pair int (lambda int int) (list int) : lambda int int ] */ ; - DUP - /* [ pair int (lambda int int) (list int) : pair int (lambda int int) (list int) - : lambda int int ] */ ; - CAR - /* [ int : pair int (lambda int int) (list int) : lambda int int ] */ ; - DIP { CDDR ; SWAP /* [ lambda int int : list int ] */ } - /* [ int : lambda int int : list int ] */ ; - EXEC - /* [ int : list int ] */ ; - CONS - /* [ list int ] */ } - /* [ lambda int int : list int ] */ ; - PAIR - /* [ pair (lambda int int) (list int) ] */ } - /* [ pair (lambda int int) (list int) ] */ ; - CDR - /* [ list int ] */ ; - DIP { NIL int /* [ list int ] */ } - /* [ list int : list int ] */ ; - ITER { CONS /* [ list int ] */ } - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039983.352 units remaining) michelson_test_scripts/attic/reentrancy.tz -{ parameter unit ; - storage (pair address address) ; - code { CDR - /* [ pair address address ] */ ; - DUP - /* [ pair address address : pair address address ] */ ; - CAR - /* [ address : pair address address ] */ ; - CONTRACT unit - /* [ option (contract unit) : pair address address ] */ ; - ASSERT_SOME ; - PUSH mutez 5000000 - /* [ mutez : contract unit : pair address address ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair address address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair address address ] */ ; - DIP { DUP - /* [ pair address address : pair address address ] */ ; - CDR - /* [ address : pair address address ] */ ; - CONTRACT unit - /* [ option (contract unit) : pair address address ] */ ; - ASSERT_SOME ; - PUSH mutez 5000000 - /* [ mutez : contract unit : pair address address ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair address address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair address address ] */ } - /* [ operation : operation : pair address address ] */ ; - DIP 2 - { NIL operation /* [ list operation : pair address address ] */ } - /* [ operation : operation : list operation : pair address address ] */ ; - DIP { CONS /* [ list operation : pair address address ] */ } - /* [ operation : list operation : pair address address ] */ ; - CONS - /* [ list operation : pair address address ] */ ; - PAIR - /* [ pair (list operation) address address ] */ } } -Well typed (Gas remaining: 1039969.237 units remaining) michelson_test_scripts/attic/reservoir.tz -{ parameter unit ; - storage (pair (pair (timestamp %T) (mutez %N)) (pair (address %A) (address %B))) ; - code { CDR - /* [ pair (pair timestamp mutez) address address ] */ ; - DUP - /* [ pair (pair timestamp mutez) address address - : pair (pair timestamp mutez) address address ] */ ; - CAAR %T ; - NOW - /* [ timestamp : timestamp : pair (pair timestamp mutez) address address ] */ ; - COMPARE - /* [ int : pair (pair timestamp mutez) address address ] */ ; - LE - /* [ bool : pair (pair timestamp mutez) address address ] */ ; - IF { DUP - /* [ pair (pair timestamp mutez) address address - : pair (pair timestamp mutez) address address ] */ ; - CADR %N ; - BALANCE - /* [ mutez : mutez : pair (pair timestamp mutez) address address ] */ ; - COMPARE - /* [ int : pair (pair timestamp mutez) address address ] */ ; - LE - /* [ bool : pair (pair timestamp mutez) address address ] */ ; - IF { NIL operation - /* [ list operation : pair (pair timestamp mutez) address address ] */ ; - PAIR - /* [ pair (list operation) (pair timestamp mutez) address address ] */ } - { DUP - /* [ pair (pair timestamp mutez) address address - : pair (pair timestamp mutez) address address ] */ ; - CDDR %B ; - CONTRACT - unit - /* [ option (contract unit) : pair (pair timestamp mutez) address address ] */ ; - ASSERT_SOME ; - BALANCE - /* [ mutez : contract unit : pair (pair timestamp mutez) address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair timestamp mutez) address address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair (pair timestamp mutez) address address ] */ ; - NIL operation - /* [ list operation : operation : pair (pair timestamp mutez) address address ] */ ; - SWAP - /* [ operation : list operation : pair (pair timestamp mutez) address address ] */ ; - CONS - /* [ list operation : pair (pair timestamp mutez) address address ] */ ; - PAIR - /* [ pair (list operation) (pair timestamp mutez) address address ] */ } } - { DUP - /* [ pair (pair timestamp mutez) address address - : pair (pair timestamp mutez) address address ] */ ; - CDAR %A ; - CONTRACT - unit - /* [ option (contract unit) : pair (pair timestamp mutez) address address ] */ ; - ASSERT_SOME ; - BALANCE - /* [ mutez : contract unit : pair (pair timestamp mutez) address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair (pair timestamp mutez) address address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair (pair timestamp mutez) address address ] */ ; - NIL operation - /* [ list operation : operation : pair (pair timestamp mutez) address address ] */ ; - SWAP - /* [ operation : list operation : pair (pair timestamp mutez) address address ] */ ; - CONS - /* [ list operation : pair (pair timestamp mutez) address address ] */ ; - PAIR - /* [ pair (list operation) (pair timestamp mutez) address address ] */ } } } -Well typed (Gas remaining: 1039889.171 units remaining) michelson_test_scripts/attic/scrutable_reservoir.tz -{ parameter unit ; - storage - (pair string - (pair timestamp (pair (pair mutez mutez) (pair address (pair address address))))) ; - code { DUP - /* [ pair unit string timestamp (pair mutez mutez) address address address - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - CDAR ; - PUSH string - "open" - /* [ string : string - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - COMPARE - /* [ int - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - NEQ - /* [ bool - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - IF { FAIL } - { DUP - /* [ pair unit string timestamp (pair mutez mutez) address address address - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - CDDAR ; - NOW - /* [ timestamp : timestamp - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - COMPARE - /* [ int - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - LT - /* [ bool - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - IF { PUSH mutez - 0 - /* [ mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair unit string timestamp (pair mutez mutez) address address address - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - CDDDAAR } - /* [ mutez : mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - ADD - /* [ mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair unit string timestamp (pair mutez mutez) address address address - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - CDDDADR } - /* [ mutez : mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - ADD - /* [ mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - BALANCE - /* [ mutez : mutez - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - COMPARE - /* [ int - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - LT - /* [ bool - : pair unit string timestamp (pair mutez mutez) address address address ] */ ; - IF { CDR - /* [ pair string timestamp (pair mutez mutez) address address address ] */ ; - NIL operation - /* [ list operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - PAIR - /* [ pair (list operation) string timestamp (pair mutez mutez) address address address ] */ } - { CDDR ; - PUSH string - "success" - /* [ string : pair timestamp (pair mutez mutez) address address address ] */ ; - PAIR - /* [ pair string timestamp (pair mutez mutez) address address address ] */ ; - DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDAAR ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDDAR } - /* [ mutez : address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair string timestamp (pair mutez mutez) address address address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDADR ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDDDAR } - /* [ mutez : address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair string timestamp (pair mutez mutez) address address address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair string timestamp (pair mutez mutez) address address address ] */ } - /* [ operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - NIL operation - /* [ list operation : operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - SWAP - /* [ operation : list operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CONS - /* [ list operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - SWAP - /* [ operation : list operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CONS - /* [ list operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - PAIR - /* [ pair (list operation) string timestamp (pair mutez mutez) address address address ] */ } } - { CDDR ; - PUSH string - "timeout" - /* [ string : pair timestamp (pair mutez mutez) address address address ] */ ; - PAIR - /* [ pair string timestamp (pair mutez mutez) address address address ] */ ; - BALANCE - /* [ mutez : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDAAR } - /* [ mutez : mutez - : pair string timestamp (pair mutez mutez) address address address ] */ ; - COMPARE - /* [ int : pair string timestamp (pair mutez mutez) address address address ] */ ; - LT - /* [ bool : pair string timestamp (pair mutez mutez) address address address ] */ ; - IF { BALANCE - /* [ mutez : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDDAR } - /* [ mutez : address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair string timestamp (pair mutez mutez) address address address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair string timestamp (pair mutez mutez) address address address ] */ } - { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDAAR ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDDAR } - /* [ mutez : address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair string timestamp (pair mutez mutez) address address address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair string timestamp (pair mutez mutez) address address address ] */ } ; - DIP { BALANCE - /* [ mutez : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { DUP - /* [ pair string timestamp (pair mutez mutez) address address address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CDDDDDR } - /* [ mutez : address - : pair string timestamp (pair mutez mutez) address address address ] */ ; - DIP { CONTRACT - unit - /* [ option (contract unit) - : pair string timestamp (pair mutez mutez) address address address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - UNIT - /* [ unit : mutez : contract unit - : pair string timestamp (pair mutez mutez) address address address ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair string timestamp (pair mutez mutez) address address address ] */ } - /* [ operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - NIL operation - /* [ list operation : operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - SWAP - /* [ operation : list operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CONS - /* [ list operation : operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - SWAP - /* [ operation : list operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - CONS - /* [ list operation - : pair string timestamp (pair mutez mutez) address address address ] */ ; - PAIR - /* [ pair (list operation) string timestamp (pair mutez mutez) address address address ] */ } } } } -Well typed (Gas remaining: 1039976.440 units remaining) michelson_test_scripts/attic/spawn_identities.tz -{ parameter nat ; - storage (list address) ; - code { /* [ pair string string ] */ - DUP - /* [ list operation : string ] */ ; - CAR - /* [ nat : pair nat (list address) ] */ ; - DIP { CDR /* [ list address ] */ ; NIL operation /* [ list operation : list address ] */ } - /* [ pair (list operation) string ] */ ; - PUSH bool True - /* [ bool : nat : list operation : list address ] */ ; - LOOP { DUP - /* [ nat : nat : list operation : list address ] */ ; - PUSH nat 0 - /* [ nat : nat : nat : list operation : list address ] */ ; - CMPEQ ; - IF { PUSH bool False /* [ bool : nat : list operation : list address ] */ } - { PUSH nat 1 - /* [ nat : nat : list operation : list address ] */ ; - SWAP - /* [ nat : nat : list operation : list address ] */ ; - SUB - /* [ int : list operation : list address ] */ ; - ABS - /* [ nat : list operation : list address ] */ ; - PUSH string "init" - /* [ string : nat : list operation : list address ] */ ; - PUSH mutez 5000000 - /* [ mutez : string : nat : list operation : list address ] */ ; - NONE key_hash - /* [ option key_hash : mutez : string : nat : list operation : list address ] */ ; - CREATE_CONTRACT - { parameter string ; - storage string ; - code { CAR ; NIL operation ; PAIR } } - /* [ operation : address : nat : list operation : list address ] */ ; - SWAP - /* [ address : operation : nat : list operation : list address ] */ ; - DIP { SWAP - /* [ nat : operation : list operation : list address ] */ ; - DIP { CONS /* [ list operation : list address ] */ } - /* [ nat : list operation : list address ] */ } - /* [ address : nat : list operation : list address ] */ ; - SWAP - /* [ nat : address : list operation : list address ] */ ; - DIP { SWAP - /* [ list operation : address : list address ] */ ; - DIP { CONS /* [ list address ] */ } - /* [ list operation : list address ] */ } - /* [ nat : list operation : list address ] */ ; - PUSH bool True - /* [ bool : nat : list operation : list address ] */ } } - /* [ nat : list operation : list address ] */ ; - DROP - /* [ list operation : list address ] */ ; - PAIR - /* [ pair (list operation) (list address) ] */ } } -Well typed (Gas remaining: 1039953.156 units remaining) michelson_test_scripts/entrypoints/big_map_entrypoints.tz -{ storage (pair (big_map string nat) (big_map string nat)) ; - parameter - (or (unit %default - /* [ list operation : big_map string nat ] */) - (or (or %mem - (string %mem_left) - (string %mem_right) - /* [ pair (list operation) (big_map string nat) ] */) - (or (or %add (pair %add_left string nat) (pair %add_right string nat)) - (or %rem (string %rem_left) (string %rem_right)))) - /* [ big_map string nat ] */) - /* [ string : big_map string nat ] */ ; - code { UNPAIR - /* [ or unit - (or (or string string) (or (or (pair string nat) (pair string nat)) (or string string))) - : pair (big_map string nat) (big_map string nat) ] */ ; - IF_LEFT - { DROP - /* [ pair (big_map string nat) (big_map string nat) ] */ ; - DUP - /* [ pair (big_map string nat) (big_map string nat) - : pair (big_map string nat) (big_map string nat) ] */ ; - CAR - /* [ big_map string nat : pair (big_map string nat) (big_map string nat) ] */ ; - PUSH mutez - 0 - /* [ mutez : big_map string nat - : pair (big_map string nat) (big_map string nat) ] */ ; - NONE key_hash - /* [ option key_hash : mutez : big_map string nat - : pair (big_map string nat) (big_map string nat) ] */ ; - CREATE_CONTRACT - { parameter string ; - storage (big_map string nat) ; - code { UNPAIR ; DROP ; NIL operation ; PAIR } } - /* [ operation : address : pair (big_map string nat) (big_map string nat) ] */ ; - DIP { DROP /* [ pair (big_map string nat) (big_map string nat) ] */ } - /* [ operation : pair (big_map string nat) (big_map string nat) ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map string nat) (big_map string nat) ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map string nat) (big_map string nat) ] */ ; - CONS - /* [ list operation : pair (big_map string nat) (big_map string nat) ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) (big_map string nat) ] */ } - { IF_LEFT - { IF_LEFT - { DIP { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { DUP /* [ big_map string nat : big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat : big_map string nat ] */ ; - MEM - /* [ bool : big_map string nat : big_map string nat ] */ ; - ASSERT } - { DIP { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { DUP /* [ big_map string nat : big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat : big_map string nat ] */ ; - MEM - /* [ bool : big_map string nat : big_map string nat ] */ ; - ASSERT ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } - { IF_LEFT - { IF_LEFT - { UNPAIR - /* [ string : nat : pair (big_map string nat) (big_map string nat) ] */ ; - DIP 2 - { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : nat : big_map string nat : big_map string nat ] */ ; - DIP { SOME /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ } - { UNPAIR - /* [ string : nat : pair (big_map string nat) (big_map string nat) ] */ ; - DIP 2 - { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : nat : big_map string nat : big_map string nat ] */ ; - DIP { SOME /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } - { IF_LEFT - { DIP { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { NONE nat /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ } - { DIP { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { NONE nat /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } } ; - PAIR - /* [ pair (big_map string nat) (big_map string nat) ] */ ; - NIL operation - /* [ list operation : pair (big_map string nat) (big_map string nat) ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) (big_map string nat) ] */ } } } -Well typed (Gas remaining: 1039960.927 units remaining) michelson_test_scripts/entrypoints/delegatable_target.tz -{ parameter - (or (or (key_hash %set_delegate) (unit %remove_delegate)) (or %default string nat)) ; - storage (pair key_hash (pair string nat)) ; - code { DUP - /* [ pair (or (or key_hash unit) (or string nat)) key_hash string nat - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - CAR - /* [ or (or key_hash unit) (or string nat) - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - IF_LEFT - { PUSH mutez - 0 - /* [ mutez : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - AMOUNT - /* [ mutez : mutez : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - ASSERT_CMPEQ ; - DUP 2 - /* [ pair (or (or key_hash unit) (or string nat)) key_hash string nat - : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - CDR - /* [ pair key_hash string nat : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - CAR - /* [ key_hash : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - ADDRESS - /* [ address : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - SENDER - /* [ address : address : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - IFCMPNEQ - { SENDER - /* [ address : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - PUSH string - "Only the owner can operate." - /* [ string : address : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - PAIR - /* [ pair string address : or key_hash unit - : pair (or (or key_hash unit) (or string nat)) key_hash string nat ] */ ; - FAILWITH - /* [] */ } - { DIP { CDR - /* [ pair key_hash string nat ] */ ; - NIL operation - /* [ list operation : pair key_hash string nat ] */ } - /* [ or key_hash unit : list operation : pair key_hash string nat ] */ ; - IF_LEFT - { SOME - /* [ option key_hash : list operation : pair key_hash string nat ] */ ; - SET_DELEGATE - /* [ operation : list operation : pair key_hash string nat ] */ ; - CONS - /* [ list operation : pair key_hash string nat ] */ ; - PAIR - /* [ pair (list operation) key_hash string nat ] */ } - { DROP - /* [ list operation : pair key_hash string nat ] */ ; - NONE key_hash - /* [ option key_hash : list operation : pair key_hash string nat ] */ ; - SET_DELEGATE - /* [ operation : list operation : pair key_hash string nat ] */ ; - CONS - /* [ list operation : pair key_hash string nat ] */ ; - PAIR - /* [ pair (list operation) key_hash string nat ] */ } } } - { DIP { CDR - /* [ pair key_hash string nat ] */ ; - DUP - /* [ pair key_hash string nat : pair key_hash string nat ] */ ; - CDR - /* [ pair string nat : pair key_hash string nat ] */ } - /* [ or string nat : pair string nat : pair key_hash string nat ] */ ; - PAIR - /* [ pair (or string nat) string nat : pair key_hash string nat ] */ ; - { UNPAIR - /* [ or string nat : pair string nat : pair key_hash string nat ] */ ; - IF_LEFT - { DIP { UNPAIR - /* [ string : nat : pair key_hash string nat ] */ ; - DROP - /* [ nat : pair key_hash string nat ] */ } - /* [ string : nat : pair key_hash string nat ] */ } - { DUG 1 - /* [ pair string nat : nat : pair key_hash string nat ] */ ; - UNPAIR - /* [ string : nat : nat : pair key_hash string nat ] */ ; - DIP { DROP /* [ nat : pair key_hash string nat ] */ } - /* [ string : nat : pair key_hash string nat ] */ } ; - PAIR - /* [ pair string nat : pair key_hash string nat ] */ ; - NIL operation - /* [ list operation : pair string nat : pair key_hash string nat ] */ ; - PAIR - /* [ pair (list operation) string nat : pair key_hash string nat ] */ } ; - SWAP - /* [ pair key_hash string nat : pair (list operation) string nat ] */ ; - CAR - /* [ key_hash : pair (list operation) string nat ] */ ; - SWAP - /* [ pair (list operation) string nat : key_hash ] */ ; - UNPAIR - /* [ list operation : pair string nat : key_hash ] */ ; - DIP { SWAP /* [ key_hash : pair string nat ] */ ; PAIR /* [ pair key_hash string nat ] */ } - /* [ list operation : pair key_hash string nat ] */ ; - PAIR - /* [ pair (list operation) key_hash string nat ] */ } } } -Well typed (Gas remaining: 1039984.397 units remaining) michelson_test_scripts/entrypoints/manager.tz -{ parameter (or (lambda %do unit (list operation)) (unit %default)) ; - storage key_hash ; - code { UNPAIR - /* [ or (lambda unit (list operation)) unit : key_hash ] */ ; - IF_LEFT - { PUSH mutez 0 - /* [ mutez : lambda unit (list operation) : key_hash ] */ ; - AMOUNT - /* [ mutez : mutez : lambda unit (list operation) : key_hash ] */ ; - ASSERT_CMPEQ ; - DUP 2 - /* [ key_hash : lambda unit (list operation) : key_hash ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : lambda unit (list operation) : key_hash ] */ ; - ADDRESS - /* [ address : lambda unit (list operation) : key_hash ] */ ; - SENDER - /* [ address : address : lambda unit (list operation) : key_hash ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit : lambda unit (list operation) : key_hash ] */ ; - EXEC - /* [ list operation : key_hash ] */ ; - PAIR - /* [ pair (list operation) key_hash ] */ } - { DROP - /* [ key_hash ] */ ; - NIL operation - /* [ list operation : key_hash ] */ ; - PAIR - /* [ pair (list operation) key_hash ] */ } } } -Well typed (Gas remaining: 1039990.140 units remaining) michelson_test_scripts/entrypoints/no_default_target.tz -{ storage (pair string nat) ; - parameter (or unit (or %data string nat)) ; - code { UNPAIR - /* [ or unit (or string nat) : pair string nat ] */ ; - IF_LEFT - { DROP - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } - { IF_LEFT - { DIP { UNPAIR /* [ string : nat ] */ ; DROP /* [ nat ] */ } /* [ string : nat ] */ } - { DUG 1 - /* [ pair string nat : nat ] */ ; - UNPAIR - /* [ string : nat : nat ] */ ; - DIP { DROP /* [ nat ] */ } - /* [ string : nat ] */ } ; - PAIR - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } } } -Well typed (Gas remaining: 1039990.140 units remaining) michelson_test_scripts/entrypoints/no_entrypoint_target.tz -{ storage (pair string nat) ; - parameter (or unit (or string nat)) ; - code { UNPAIR - /* [ or unit (or string nat) : pair string nat ] */ ; - IF_LEFT - { DROP - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } - { IF_LEFT - { DIP { UNPAIR /* [ string : nat ] */ ; DROP /* [ nat ] */ } /* [ string : nat ] */ } - { DUG 1 - /* [ pair string nat : nat ] */ ; - UNPAIR - /* [ string : nat : nat ] */ ; - DIP { DROP /* [ nat ] */ } - /* [ string : nat ] */ } ; - PAIR - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } } } -Well typed (Gas remaining: 1039990.140 units remaining) michelson_test_scripts/entrypoints/rooted_target.tz -{ storage (pair string nat) ; - parameter (or %root unit (or %default string nat)) ; - code { UNPAIR - /* [ or unit (or string nat) : pair string nat ] */ ; - IF_LEFT - { DROP - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } - { IF_LEFT - { DIP { UNPAIR /* [ string : nat ] */ ; DROP /* [ nat ] */ } /* [ string : nat ] */ } - { DUG 1 - /* [ pair string nat : nat ] */ ; - UNPAIR - /* [ string : nat : nat ] */ ; - DIP { DROP /* [ nat ] */ } - /* [ string : nat ] */ } ; - PAIR - /* [ pair string nat ] */ ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } } } -Well typed (Gas remaining: 1039997.574 units remaining) michelson_test_scripts/entrypoints/simple_entrypoints.tz -{ parameter (or (unit %A) (or (string %B) (nat %C))) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039995.213 units remaining) michelson_test_scripts/macros/assert.tz -{ parameter bool ; - storage unit ; - code { CAR - /* [ bool ] */ ; - ASSERT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmpeq.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmpge.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPGE ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmpgt.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPGT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmple.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPLE ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmplt.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPLT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.596 units remaining) michelson_test_scripts/macros/assert_cmpneq.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - ASSERT_CMPNEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_eq.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_ge.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GE ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_gt.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_le.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LE ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_lt.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.843 units remaining) michelson_test_scripts/macros/assert_neq.tz -{ parameter (pair int int) ; - storage unit ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_NEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039971.186 units remaining) michelson_test_scripts/macros/big_map_get_add.tz -{ parameter (pair (pair %set_pair int (option int)) (pair %check_pair int (option int))) ; - storage (pair (big_map int int) unit) ; - code { DUP - /* [ pair (pair (pair int (option int)) int (option int)) (big_map int int) unit - : pair (pair (pair int (option int)) int (option int)) (big_map int int) unit ] */ ; - DIP { CDAR } - /* [ pair (pair (pair int (option int)) int (option int)) (big_map int int) unit - : big_map int int ] */ ; - DUP - /* [ pair (pair (pair int (option int)) int (option int)) (big_map int int) unit - : pair (pair (pair int (option int)) int (option int)) (big_map int int) unit - : big_map int int ] */ ; - DIP { CADR ; - DUP - /* [ pair int (option int) : pair int (option int) : big_map int int ] */ ; - CAR - /* [ int : pair int (option int) : big_map int int ] */ ; - DIP { CDR /* [ option int : big_map int int ] */ } - /* [ int : option int : big_map int int ] */ ; - UPDATE - /* [ big_map int int ] */ ; - DUP - /* [ big_map int int : big_map int int ] */ } - /* [ pair (pair (pair int (option int)) int (option int)) (big_map int int) unit - : big_map int int : big_map int int ] */ ; - CADR ; - DUP - /* [ pair int (option int) : pair int (option int) : big_map int int - : big_map int int ] */ ; - CDR - /* [ option int : pair int (option int) : big_map int int : big_map int int ] */ ; - DIP { CAR - /* [ int : big_map int int : big_map int int ] */ ; - GET - /* [ option int : big_map int int ] */ } - /* [ option int : option int : big_map int int ] */ ; - IF_SOME - { SWAP - /* [ option int : int : big_map int int ] */ ; - IF_SOME { ASSERT_CMPEQ } { FAIL } } - { ASSERT_NONE } ; - UNIT - /* [ unit : big_map int int ] */ ; - SWAP - /* [ big_map int int : unit ] */ ; - PAIR - /* [ pair (big_map int int) unit ] */ ; - NIL operation - /* [ list operation : pair (big_map int int) unit ] */ ; - PAIR - /* [ pair (list operation) (big_map int int) unit ] */ } } -Well typed (Gas remaining: 1039984.191 units remaining) michelson_test_scripts/macros/big_map_mem.tz -{ parameter (pair int bool) ; - storage (pair (big_map int unit) unit) ; - code { DUP - /* [ pair (pair int bool) (big_map int unit) unit - : pair (pair int bool) (big_map int unit) unit ] */ ; - DUP - /* [ pair (pair int bool) (big_map int unit) unit - : pair (pair int bool) (big_map int unit) unit - : pair (pair int bool) (big_map int unit) unit ] */ ; - CADR ; - DIP { CAAR ; - DIP { CDAR ; DUP /* [ big_map int unit : big_map int unit ] */ } - /* [ int : big_map int unit : big_map int unit ] */ ; - MEM - /* [ bool : big_map int unit ] */ } - /* [ bool : bool : big_map int unit ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit : big_map int unit ] */ ; - SWAP - /* [ big_map int unit : unit ] */ ; - PAIR - /* [ pair (big_map int unit) unit ] */ ; - NIL operation - /* [ list operation : pair (big_map int unit) unit ] */ ; - PAIR - /* [ pair (list operation) (big_map int unit) unit ] */ } } -Well typed (Gas remaining: 1039985.111 units remaining) michelson_test_scripts/macros/build_list.tz -{ parameter nat ; - storage (list nat) ; - code { CAR @counter - /* [ nat ] */ ; - NIL @acc nat - /* [ list nat : nat ] */ ; - SWAP - /* [ nat : list nat ] */ ; - DUP @cmp_num - /* [ nat : nat : list nat ] */ ; - PUSH nat 0 - /* [ nat : nat : nat : list nat ] */ ; - CMPNEQ ; - LOOP { DUP - /* [ nat : nat : list nat ] */ ; - DIP { SWAP /* [ list nat : nat ] */ } - /* [ nat : list nat : nat ] */ ; - CONS @acc - /* [ list nat : nat ] */ ; - SWAP - /* [ nat : list nat ] */ ; - PUSH nat 1 - /* [ nat : nat : list nat ] */ ; - SWAP - /* [ nat : nat : list nat ] */ ; - SUB @counter - /* [ int : list nat ] */ ; - DUP - /* [ int : int : list nat ] */ ; - DIP { ABS /* [ nat : list nat ] */ } - /* [ int : nat : list nat ] */ ; - PUSH int 0 - /* [ int : int : nat : list nat ] */ ; - CMPNEQ } - /* [ nat : list nat ] */ ; - CONS - /* [ list nat ] */ ; - NIL operation - /* [ list operation : list nat ] */ ; - PAIR - /* [ pair (list operation) (list nat) ] */ } } -Well typed (Gas remaining: 1039965.224 units remaining) michelson_test_scripts/macros/carn_and_cdrn.tz -{ parameter (pair nat nat nat unit) ; - storage unit ; - code { CAR - /* [ pair nat nat nat unit ] */ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CAR - /* [ nat : pair nat nat nat unit ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CAR 0 ; - PUSH nat 1 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CAR 1 ; - PUSH nat 4 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CAR 2 ; - PUSH nat 2 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CDR 3 ; - UNIT - /* [ unit : unit : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039971.322 units remaining) michelson_test_scripts/macros/compare.tz -{ parameter (pair mutez mutez) ; - storage (list bool) ; - code { CAR - /* [ pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez : pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez : pair mutez mutez - : pair mutez mutez ] */ ; - DIP 5 - { NIL bool /* [ list bool ] */ } - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez : pair mutez mutez - : pair mutez mutez : list bool ] */ ; - DIP 4 - { DUP - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - CAR - /* [ mutez : pair mutez mutez : list bool ] */ ; - DIP { CDR /* [ mutez : list bool ] */ } - /* [ mutez : mutez : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - LE - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez : pair mutez mutez - : list bool ] */ ; - DIP 3 - { DUP - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - CAR - /* [ mutez : pair mutez mutez : list bool ] */ ; - DIP { CDR /* [ mutez : list bool ] */ } - /* [ mutez : mutez : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - GE - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez : list bool ] */ ; - DIP 2 - { DUP - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - CAR - /* [ mutez : pair mutez mutez : list bool ] */ ; - DIP { CDR /* [ mutez : list bool ] */ } - /* [ mutez : mutez : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - LT - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - DIP { DUP - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - CAR - /* [ mutez : pair mutez mutez : list bool ] */ ; - DIP { CDR /* [ mutez : list bool ] */ } - /* [ mutez : mutez : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - GT - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair mutez mutez : list bool ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez : list bool ] */ ; - CAR - /* [ mutez : pair mutez mutez : list bool ] */ ; - DIP { CDR /* [ mutez : list bool ] */ } - /* [ mutez : mutez : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - EQ - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ ; - NIL operation - /* [ list operation : list bool ] */ ; - PAIR - /* [ pair (list operation) (list bool) ] */ } } -Well typed (Gas remaining: 1039971.322 units remaining) michelson_test_scripts/macros/compare_bytes.tz -{ parameter (pair bytes bytes) ; - storage (list bool) ; - code { CAR - /* [ pair bytes bytes ] */ ; - DUP - /* [ pair bytes bytes : pair bytes bytes ] */ ; - DUP - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes ] */ ; - DUP - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes : pair bytes bytes ] */ ; - DUP - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes : pair bytes bytes - : pair bytes bytes ] */ ; - DIP 5 - { NIL bool /* [ list bool ] */ } - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes : pair bytes bytes - : pair bytes bytes : list bool ] */ ; - DIP 4 - { DUP - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - CAR - /* [ bytes : pair bytes bytes : list bool ] */ ; - DIP { CDR /* [ bytes : list bool ] */ } - /* [ bytes : bytes : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - LE - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes : pair bytes bytes - : list bool ] */ ; - DIP 3 - { DUP - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - CAR - /* [ bytes : pair bytes bytes : list bool ] */ ; - DIP { CDR /* [ bytes : list bool ] */ } - /* [ bytes : bytes : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - GE - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair bytes bytes : pair bytes bytes : pair bytes bytes : list bool ] */ ; - DIP 2 - { DUP - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - CAR - /* [ bytes : pair bytes bytes : list bool ] */ ; - DIP { CDR /* [ bytes : list bool ] */ } - /* [ bytes : bytes : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - LT - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - DIP { DUP - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - CAR - /* [ bytes : pair bytes bytes : list bool ] */ ; - DIP { CDR /* [ bytes : list bool ] */ } - /* [ bytes : bytes : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - GT - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ } - /* [ pair bytes bytes : list bool ] */ ; - DUP - /* [ pair bytes bytes : pair bytes bytes : list bool ] */ ; - CAR - /* [ bytes : pair bytes bytes : list bool ] */ ; - DIP { CDR /* [ bytes : list bool ] */ } - /* [ bytes : bytes : list bool ] */ ; - COMPARE - /* [ int : list bool ] */ ; - EQ - /* [ bool : list bool ] */ ; - CONS - /* [ list bool ] */ ; - NIL operation - /* [ list operation : list bool ] */ ; - PAIR - /* [ pair (list operation) (list bool) ] */ } } -Well typed (Gas remaining: 1039998.449 units remaining) michelson_test_scripts/macros/fail.tz -{ parameter unit ; storage unit ; code { FAIL } } -Well typed (Gas remaining: 1039988.143 units remaining) michelson_test_scripts/macros/guestbook.tz -{ parameter string ; - storage (map address (option string)) ; - code { UNPAIR @message @guestbook - /* [ string : map address (option string) ] */ ; - SWAP - /* [ map address (option string) : string ] */ ; - DUP - /* [ map address (option string) : map address (option string) : string ] */ ; - SENDER - /* [ address : map address (option string) : map address (option string) - : string ] */ ; - GET @previous_message - /* [ option (option string) : map address (option string) : string ] */ ; - ASSERT_SOME ; - ASSERT_NONE ; - SWAP - /* [ string : map address (option string) ] */ ; - SOME - /* [ option string : map address (option string) ] */ ; - SOME - /* [ option (option string) : map address (option string) ] */ ; - SENDER - /* [ address : option (option string) : map address (option string) ] */ ; - UPDATE - /* [ map address (option string) ] */ ; - NIL operation - /* [ list operation : map address (option string) ] */ ; - PAIR - /* [ pair (list operation) (map address (option string)) ] */ } } -Well typed (Gas remaining: 1039993.362 units remaining) michelson_test_scripts/macros/macro_annotations.tz -{ parameter unit ; - storage (pair (unit %truc) unit) ; - code { DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - UNIT - /* [ unit : unit ] */ ; - PAIR %truc - /* [ pair unit unit ] */ ; - UNIT - /* [ unit : pair unit unit ] */ ; - DUP @new_storage 2 - /* [ pair unit unit : unit : pair unit unit ] */ ; - DIP { DROP /* [ pair unit unit ] */ ; DROP /* [] */ } - /* [ pair unit unit ] */ ; - NIL operation - /* [ list operation : pair unit unit ] */ ; - PAIR - /* [ pair (list operation) unit unit ] */ } } -Well typed (Gas remaining: 1039966.766 units remaining) michelson_test_scripts/macros/map_caddaadr.tz -{ parameter unit ; - storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; - code { MAP_CDADDAADR @new_storage %value - { PUSH mutez 1000000 - /* [ mutez : mutez : pair nat mutez ] */ ; - ADD - /* [ mutez : pair nat mutez ] */ } ; - NIL operation - /* [ list operation - : pair unit (pair nat nat (pair (pair nat mutez) nat) nat) nat ] */ ; - SWAP - /* [ pair unit (pair nat nat (pair (pair nat mutez) nat) nat) nat - : list operation ] */ ; - SET_CAR } } -Well typed (Gas remaining: 1039987.861 units remaining) michelson_test_scripts/macros/max_in_list.tz -{ parameter (list int) ; - storage (option int) ; - code { CAR - /* [ list int ] */ ; - DIP { NONE int /* [ option int ] */ } - /* [ list int : option int ] */ ; - ITER { SWAP - /* [ option int : int ] */ ; - IF_NONE - { SOME /* [ option int ] */ } - { DIP { DUP /* [ int : int ] */ } - /* [ int : int : int ] */ ; - DUP - /* [ int : int : int : int ] */ ; - DIP { SWAP /* [ int : int : int ] */ } - /* [ int : int : int : int ] */ ; - CMPLE ; - IF { DROP /* [ int ] */ } { DIP { DROP /* [] */ } /* [ int ] */ } ; - SOME - /* [ option int ] */ } } - /* [ option int ] */ ; - NIL operation - /* [ list operation : option int ] */ ; - PAIR - /* [ pair (list operation) (option int) ] */ } } -Well typed (Gas remaining: 1039991.951 units remaining) michelson_test_scripts/macros/min.tz -{ parameter (pair int int) ; - storage int ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - DUP - /* [ pair int int : pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int : pair int int ] */ ; - DIP { CDR /* [ int : pair int int ] */ } - /* [ int : int : pair int int ] */ ; - CMPLT ; - IF { CAR /* [ int ] */ } { CDR /* [ int ] */ } ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039988.858 units remaining) michelson_test_scripts/macros/pair_macro.tz -{ parameter unit ; - storage unit ; - code { UNIT - /* [ unit : pair unit unit ] */ ; - UNIT - /* [ unit : unit : pair unit unit ] */ ; - UNIT - /* [ unit : unit : unit : pair unit unit ] */ ; - UNIT - /* [ unit : unit : unit : unit : pair unit unit ] */ ; - UNIT - /* [ unit : unit : unit : unit : unit : pair unit unit ] */ ; - PAPAPAPAIR @name %x1 %x2 %x3 %x4 %x5 ; - CDDDAR %x4 @fourth ; - DROP - /* [ pair unit unit ] */ ; - CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039970.670 units remaining) michelson_test_scripts/macros/set_caddaadr.tz -{ parameter mutez ; - storage (pair (pair nat (pair nat (pair (pair (pair (nat %p) (mutez %value)) nat) nat))) nat) ; - code { DUP - /* [ pair mutez (pair nat nat (pair (pair nat mutez) nat) nat) nat - : pair mutez (pair nat nat (pair (pair nat mutez) nat) nat) nat ] */ ; - CAR - /* [ mutez : pair mutez (pair nat nat (pair (pair nat mutez) nat) nat) nat ] */ ; - SWAP - /* [ pair mutez (pair nat nat (pair (pair nat mutez) nat) nat) nat : mutez ] */ ; - CDR - /* [ pair (pair nat nat (pair (pair nat mutez) nat) nat) nat : mutez ] */ ; - SET_CADDAADR @toplevel_pair_name %value ; - NIL operation - /* [ list operation : pair (pair nat nat (pair (pair nat mutez) nat) nat) nat ] */ ; - PAIR - /* [ pair (list operation) (pair nat nat (pair (pair nat mutez) nat) nat) nat ] */ } } -Well typed (Gas remaining: 1039993.750 units remaining) michelson_test_scripts/macros/take_my_money.tz -{ parameter key_hash ; - storage unit ; - code { CAR - /* [ key_hash ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit ] */ ; - DIP { UNIT /* [ unit ] */ } - /* [ contract unit : unit ] */ ; - PUSH mutez 1000000 - /* [ mutez : contract unit : unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : unit ] */ ; - NIL operation - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039977.130 units remaining) michelson_test_scripts/macros/unpair_macro.tz -{ parameter (unit :param_unit) ; - storage (unit :u1) ; - code { DROP - /* [] */ ; - UNIT :u4 @a4 - /* [ unit ] */ ; - UNIT :u3 @a3 - /* [ unit : unit ] */ ; - UNIT :u2 @a2 - /* [ unit : unit : unit ] */ ; - UNIT :u1 @a1 - /* [ unit : unit : unit : unit ] */ ; - PAIR - /* [ pair unit unit : unit : unit ] */ ; - UNPAIR @x1 @x2 - /* [ unit : unit : unit : unit ] */ ; - PPAIPAIR @p1 %x1 %x2 %x3 %x4 ; - UNPPAIPAIR %x1 % %x3 %x4 @uno @due @tre @quattro ; - PAPAPAIR @p2 %x1 %x2 %x3 %x4 ; - UNPAPAPAIR @un @deux @trois @quatre ; - PAPPAIIR @p3 %x1 %x2 %x3 %x4 ; - UNPAPPAIIR @one @two @three @four ; - DIP { DROP /* [ unit : unit ] */ ; DROP /* [ unit ] */ ; DROP /* [] */ } - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039563.004 units remaining) michelson_test_scripts/mini_scenarios/999_constant.tz -{ parameter unit ; - storage int ; - code { DROP - /* [] */ ; - PUSH int - (constant - "expruQN5r2umbZVHy6WynYM8f71F8zS4AERz9bugF8UkPBEqrHLuU8" - /* [ list operation : int ] */) - /* [ int ] */ ; - NIL operation /* [ pair (list operation) int ] */ ; - PAIR } } -Well typed (Gas remaining: 1039988.509 units remaining) michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz -{ parameter (or (pair %add nat string) (unit %clear)) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or (pair nat string) unit : list (ticket string) ] */ ; - IF_LEFT - { UNPAIR - /* [ nat : string : list (ticket string) ] */ ; - DIG 2 - /* [ list (ticket string) : nat : string ] */ ; - SWAP - /* [ nat : list (ticket string) : string ] */ ; - DIG 2 - /* [ string : nat : list (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { DROP 2 - /* [] */ ; - NIL (ticket string) - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } } -Well typed (Gas remaining: 1039999.431 units remaining) michelson_test_scripts/mini_scenarios/always_fails.tz -{ parameter string ; storage unit ; code FAILWITH /* [] */ } -Well typed (Gas remaining: 1039979.836 units remaining) michelson_test_scripts/mini_scenarios/authentication.tz -{ parameter (pair (lambda unit (list operation)) signature) ; - storage (pair (nat %counter) key) ; - code { UNPPAIPAIR ; - DUP 3 - /* [ nat : lambda unit (list operation) : signature : nat : key ] */ ; - DUP 2 - /* [ lambda unit (list operation) : nat : lambda unit (list operation) - : signature : nat : key ] */ ; - SELF - /* [ contract (pair (lambda unit (list operation)) signature) - : lambda unit (list operation) : nat : lambda unit (list operation) - : signature : nat : key ] */ ; - CHAIN_ID - /* [ chain_id : contract (pair (lambda unit (list operation)) signature) - : lambda unit (list operation) : nat : lambda unit (list operation) - : signature : nat : key ] */ ; - PPAIPAIR ; - PACK - /* [ bytes : lambda unit (list operation) : signature : nat : key ] */ ; - DIP { SWAP /* [ signature : lambda unit (list operation) : nat : key ] */ } - /* [ bytes : signature : lambda unit (list operation) : nat : key ] */ ; - DUP 5 - /* [ key : bytes : signature : lambda unit (list operation) : nat : key ] */ ; - DIP { SWAP /* [ signature : bytes : lambda unit (list operation) : nat : key ] */ } - /* [ key : signature : bytes : lambda unit (list operation) : nat : key ] */ ; - DUP 3 - /* [ bytes : key : signature : bytes : lambda unit (list operation) : nat - : key ] */ ; - DIP { CHECK_SIGNATURE /* [ bool : lambda unit (list operation) : nat : key ] */ } - /* [ bytes : bool : lambda unit (list operation) : nat : key ] */ ; - SWAP - /* [ bool : bytes : lambda unit (list operation) : nat : key ] */ ; - IF { DROP /* [ lambda unit (list operation) : nat : key ] */ } { FAILWITH /* [] */ } ; - UNIT - /* [ unit : lambda unit (list operation) : nat : key ] */ ; - EXEC - /* [ list operation : nat : key ] */ ; - DIP { PUSH nat 1 /* [ nat : nat : key ] */ ; ADD /* [ nat : key ] */ } - /* [ list operation : nat : key ] */ ; - PAPAIR } } -Well typed (Gas remaining: 1039996.181 units remaining) michelson_test_scripts/mini_scenarios/big_map_all.tz -{ parameter (pair string (option nat)) ; - storage (big_map string nat) ; - code { UNPAIR - /* [ pair string (option nat) : big_map string nat ] */ ; - UNPAIR - /* [ string : option nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat ] */ ; - NIL operation - /* [ list operation : big_map string nat ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) ] */ } } -Well typed (Gas remaining: 1039953.156 units remaining) michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz -{ storage (pair (big_map string nat) (big_map string nat)) ; - parameter - (or (unit %default - /* [ list operation : big_map string nat ] */) - (or (or %mem - (string %mem_left) - (string %mem_right) - /* [ pair (list operation) (big_map string nat) ] */) - (or (or %add (pair %add_left string nat) (pair %add_right string nat)) - (or %rem (string %rem_left) (string %rem_right)))) - /* [ big_map string nat ] */) - /* [ string : big_map string nat ] */ ; - code { UNPAIR - /* [ or unit - (or (or string string) (or (or (pair string nat) (pair string nat)) (or string string))) - : pair (big_map string nat) (big_map string nat) ] */ ; - IF_LEFT - { DROP - /* [ pair (big_map string nat) (big_map string nat) ] */ ; - DUP - /* [ pair (big_map string nat) (big_map string nat) - : pair (big_map string nat) (big_map string nat) ] */ ; - CAR - /* [ big_map string nat : pair (big_map string nat) (big_map string nat) ] */ ; - PUSH mutez - 0 - /* [ mutez : big_map string nat - : pair (big_map string nat) (big_map string nat) ] */ ; - NONE key_hash - /* [ option key_hash : mutez : big_map string nat - : pair (big_map string nat) (big_map string nat) ] */ ; - CREATE_CONTRACT - { parameter string ; - storage (big_map string nat) ; - code { UNPAIR ; DROP ; NIL operation ; PAIR } } - /* [ operation : address : pair (big_map string nat) (big_map string nat) ] */ ; - DIP { DROP /* [ pair (big_map string nat) (big_map string nat) ] */ } - /* [ operation : pair (big_map string nat) (big_map string nat) ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map string nat) (big_map string nat) ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map string nat) (big_map string nat) ] */ ; - CONS - /* [ list operation : pair (big_map string nat) (big_map string nat) ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) (big_map string nat) ] */ } - { IF_LEFT - { IF_LEFT - { DIP { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { DUP /* [ big_map string nat : big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat : big_map string nat ] */ ; - MEM - /* [ bool : big_map string nat : big_map string nat ] */ ; - ASSERT } - { DIP { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { DUP /* [ big_map string nat : big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat : big_map string nat ] */ ; - MEM - /* [ bool : big_map string nat : big_map string nat ] */ ; - ASSERT ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } - { IF_LEFT - { IF_LEFT - { UNPAIR - /* [ string : nat : pair (big_map string nat) (big_map string nat) ] */ ; - DIP 2 - { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : nat : big_map string nat : big_map string nat ] */ ; - DIP { SOME /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ } - { UNPAIR - /* [ string : nat : pair (big_map string nat) (big_map string nat) ] */ ; - DIP 2 - { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : nat : big_map string nat : big_map string nat ] */ ; - DIP { SOME /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } - { IF_LEFT - { DIP { UNPAIR /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { NONE nat /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ } - { DIP { UNPAIR - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - DIP { NONE nat /* [ option nat : big_map string nat : big_map string nat ] */ } - /* [ string : option nat : big_map string nat : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : big_map string nat ] */ } } } ; - PAIR - /* [ pair (big_map string nat) (big_map string nat) ] */ ; - NIL operation - /* [ list operation : pair (big_map string nat) (big_map string nat) ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) (big_map string nat) ] */ } } } -Well typed (Gas remaining: 1039954.710 units remaining) michelson_test_scripts/mini_scenarios/big_map_magic.tz -{ storage (or (pair (big_map string string) (big_map string string)) unit) ; - parameter - (or (unit %swap) - (or (or %reset (pair (big_map string string) (big_map string string)) unit) - (or (pair %import (list (pair string string)) (list (pair string string))) - (or (list %add (pair string string)) (list %rem string))))) ; - code { UNPAIR - /* [ or unit - (or (or (pair (big_map string string) (big_map string string)) unit) - (or (pair (list (pair string string)) (list (pair string string))) - (or (list (pair string string)) (list string)))) - : or (pair (big_map string string) (big_map string string)) unit ] */ ; - IF_LEFT - { DROP - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ ; - ASSERT_LEFT ; - UNPAIR - /* [ big_map string string : big_map string string ] */ ; - SWAP - /* [ big_map string string : big_map string string ] */ ; - PAIR - /* [ pair (big_map string string) (big_map string string) ] */ ; - LEFT unit - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ } - { IF_LEFT - { SWAP - /* [ or (pair (big_map string string) (big_map string string)) unit - : or (pair (big_map string string) (big_map string string)) unit ] */ ; - DROP - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ } - { IF_LEFT - { DIP { ASSERT_RIGHT ; DROP /* [] */ } - /* [ pair (list (pair string string)) (list (pair string string)) ] */ ; - UNPAIR - /* [ list (pair string string) : list (pair string string) ] */ ; - DIP { EMPTY_BIG_MAP - string - string - /* [ big_map string string : list (pair string string) ] */ } - /* [ list (pair string string) : big_map string string - : list (pair string string) ] */ ; - ITER { UNPAIR - /* [ string : string : big_map string string : list (pair string string) ] */ ; - DIP { SOME - /* [ option string : big_map string string : list (pair string string) ] */ } - /* [ string : option string : big_map string string - : list (pair string string) ] */ ; - UPDATE - /* [ big_map string string : list (pair string string) ] */ } - /* [ big_map string string : list (pair string string) ] */ ; - SWAP - /* [ list (pair string string) : big_map string string ] */ ; - DIP { EMPTY_BIG_MAP string string - /* [ big_map string string : big_map string string ] */ } - /* [ list (pair string string) : big_map string string : big_map string string ] */ ; - ITER { UNPAIR - /* [ string : string : big_map string string : big_map string string ] */ ; - DIP { SOME /* [ option string : big_map string string : big_map string string ] */ } - /* [ string : option string : big_map string string : big_map string string ] */ ; - UPDATE - /* [ big_map string string : big_map string string ] */ } - /* [ big_map string string : big_map string string ] */ ; - SWAP - /* [ big_map string string : big_map string string ] */ ; - PAIR - /* [ pair (big_map string string) (big_map string string) ] */ ; - LEFT unit - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ } - { IF_LEFT - { DIP { ASSERT_LEFT ; UNPAIR /* [ big_map string string : big_map string string ] */ } - /* [ list (pair string string) : big_map string string : big_map string string ] */ ; - ITER { UNPAIR - /* [ string : string : big_map string string : big_map string string ] */ ; - DIP { SOME /* [ option string : big_map string string : big_map string string ] */ } - /* [ string : option string : big_map string string : big_map string string ] */ ; - UPDATE - /* [ big_map string string : big_map string string ] */ } - /* [ big_map string string : big_map string string ] */ ; - PAIR - /* [ pair (big_map string string) (big_map string string) ] */ ; - LEFT unit - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ } - { DIP { ASSERT_LEFT ; UNPAIR /* [ big_map string string : big_map string string ] */ } - /* [ list string : big_map string string : big_map string string ] */ ; - ITER { DIP { NONE string - /* [ option string : big_map string string : big_map string string ] */ } - /* [ string : option string : big_map string string : big_map string string ] */ ; - UPDATE - /* [ big_map string string : big_map string string ] */ } - /* [ big_map string string : big_map string string ] */ ; - PAIR - /* [ pair (big_map string string) (big_map string string) ] */ ; - LEFT unit - /* [ or (pair (big_map string string) (big_map string string)) unit ] */ } } } } ; - NIL operation - /* [ list operation - : or (pair (big_map string string) (big_map string string)) unit ] */ ; - PAIR - /* [ pair (list operation) (or (pair (big_map string string) (big_map string string)) unit) ] */ } } -Well typed (Gas remaining: 1039994.234 units remaining) michelson_test_scripts/mini_scenarios/big_map_read.tz -{ storage nat ; - parameter (big_map nat nat) ; - code { CAR - /* [ big_map nat nat ] */ ; - PUSH nat 1 - /* [ nat : big_map nat nat ] */ ; - GET - /* [ option nat ] */ ; - ASSERT_SOME ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039996.856 units remaining) michelson_test_scripts/mini_scenarios/big_map_store.tz -{ storage (big_map nat nat) ; - parameter unit ; - code { DROP - /* [] */ ; - EMPTY_BIG_MAP nat nat - /* [ big_map nat nat ] */ ; - NIL operation - /* [ list operation : big_map nat nat ] */ ; - PAIR - /* [ pair (list operation) (big_map nat nat) ] */ } } -Well typed (Gas remaining: 1039994.982 units remaining) michelson_test_scripts/mini_scenarios/big_map_write.tz -{ storage unit ; - parameter (big_map nat nat) ; - code { UNPAIR - /* [ big_map nat nat : unit ] */ ; - PUSH (option nat) (Some 1) - /* [ option nat : big_map nat nat : unit ] */ ; - PUSH nat 1 - /* [ nat : option nat : big_map nat nat : unit ] */ ; - UPDATE - /* [ big_map nat nat : unit ] */ ; - DROP - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039994.914 units remaining) michelson_test_scripts/mini_scenarios/cache_consistency.tz -{ parameter (or (unit %renew) (unit %keep)) ; - storage (big_map (nat :a) string) ; - code { UNPAIR - /* [ or unit unit : big_map nat string ] */ ; - IF_LEFT - { DROP 2 /* [] */ ; EMPTY_BIG_MAP nat string /* [ big_map nat string ] */ } - { DROP /* [ big_map nat string ] */ } ; - NIL operation - /* [ list operation : big_map nat string ] */ ; - PAIR - /* [ pair (list operation) (big_map nat string) ] */ } } -Well typed (Gas remaining: 1039986.408 units remaining) michelson_test_scripts/mini_scenarios/check_signature.tz -{ parameter (pair key signature bytes) ; - storage unit ; - code { CAR - /* [ pair key signature bytes ] */ ; - UNPAIR - /* [ key : pair signature bytes ] */ ; - SWAP - /* [ pair signature bytes : key ] */ ; - UNPAIR - /* [ signature : bytes : key ] */ ; - DUP 3 - /* [ key : signature : bytes : key ] */ ; - HASH_KEY - /* [ key_hash : signature : bytes : key ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : signature : bytes : key ] */ ; - SENDER - /* [ address : contract unit : signature : bytes : key ] */ ; - SWAP - /* [ contract unit : address : signature : bytes : key ] */ ; - ADDRESS - /* [ address : address : signature : bytes : key ] */ ; - COMPARE - /* [ int : signature : bytes : key ] */ ; - EQ - /* [ bool : signature : bytes : key ] */ ; - IF { /* [ signature : bytes : key ] */ } - { PUSH string "invalid signer" - /* [ string : signature : bytes : key ] */ ; - FAILWITH - /* [] */ } ; - DIG 2 - /* [ key : signature : bytes ] */ ; - CHECK_SIGNATURE - /* [ bool ] */ ; - IF { UNIT /* [ unit ] */ } - { PUSH string "invalid signature" /* [ string ] */ ; FAILWITH /* [] */ } ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039546.605 units remaining) michelson_test_scripts/mini_scenarios/constant_entrypoints.tz -{ parameter - (or (lambda %do - (constant "exprvKFFbc7SnPjkPZgyhaHewQhmrouNjNae3DpsQ8KuADn9i2WuJ8") - (list operation)) - (unit %default)) ; - storage key_hash ; - code { { { /* [ pair (or (lambda unit (list operation)) unit) key_hash ] */ - DUP - /* [ or (lambda unit (list operation)) unit - : pair (or (lambda unit (list operation)) unit) key_hash ] */ ; - CAR - /* [ or (lambda unit (list operation)) unit : key_hash ] */ ; - DIP { /* [ pair (or (lambda unit (list operation)) unit) key_hash ] */ CDR } } } ; - IF_LEFT - { /* [ lambda unit (list operation) : key_hash ] */ - PUSH mutez 0 /* [ mutez : mutez : lambda unit (list operation) : key_hash ] */ ; - AMOUNT ; - { { /* [ mutez : mutez : lambda unit (list operation) : key_hash ] */ - COMPARE - /* [ bool : lambda unit (list operation) : key_hash ] */ ; - EQ } ; - IF {} - { { /* [ lambda unit (list operation) : key_hash ] */ UNIT /* [] */ ; FAILWITH } } - /* [ lambda unit (list operation) : key_hash ] */ } ; - { /* [ lambda unit (list operation) : key_hash ] */ - DIP { /* [ key_hash ] */ DUP /* [ key_hash : lambda unit (list operation) : key_hash ] */ } ; - SWAP - /* [ contract unit : lambda unit (list operation) : key_hash ] */ } ; - IMPLICIT_ACCOUNT - /* [ address : lambda unit (list operation) : key_hash ] */ ; - ADDRESS - /* [ address : address : lambda unit (list operation) : key_hash ] */ ; - SENDER ; - { { /* [ address : address : lambda unit (list operation) : key_hash ] */ - COMPARE - /* [ bool : lambda unit (list operation) : key_hash ] */ ; - EQ } ; - IF {} - { { /* [ lambda unit (list operation) : key_hash ] */ - UNIT - /* [] */ ; - FAILWITH - /* [ unit : lambda unit (list operation) : key_hash ] */ } } - /* [ lambda unit (list operation) : key_hash ] */ } ; - UNIT - /* [ list operation : key_hash ] */ ; - EXEC - /* [ pair (list operation) key_hash ] */ ; - PAIR } - { /* [ unit : key_hash ] */ - DROP - /* [ list operation : key_hash ] */ ; - NIL operation /* [ pair (list operation) key_hash ] */ ; - PAIR } } } -Well typed (Gas remaining: 1039124.469 units remaining) michelson_test_scripts/mini_scenarios/constant_unit.tz -{ parameter (constant "exprvKFFbc7SnPjkPZgyhaHewQhmrouNjNae3DpsQ8KuADn9i2WuJ8") ; - storage (constant "exprvKFFbc7SnPjkPZgyhaHewQhmrouNjNae3DpsQ8KuADn9i2WuJ8") ; - code { /* [] */ - DROP ; - PUSH unit - /* [ list operation : unit ] */ - (constant - "expruJpGVgueH6vjZDZQRjgXUuHBi4Y6UQ3cbz6swP2FMVybvnDjm5" - /* [ pair (list operation) unit ] */) ; - NIL operation ; - PAIR } - /* [] */ } -Well typed (Gas remaining: 1039973.277 units remaining) michelson_test_scripts/mini_scenarios/create_contract.tz -{ parameter (option address) ; - storage unit ; - code { /* [ pair string string ] */ - CAR - /* [ list operation : string ] */ ; - IF_NONE - { /* [ list operation : string ] */ - PUSH string "dummy" - /* [ string ] */ ; - PUSH mutez 100000000 - /* [ mutez : string ] */ ; - NONE key_hash - /* [ option key_hash : mutez : string ] */ ; - CREATE_CONTRACT - { parameter string ; - storage string ; - code { CAR ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - DIP { SOME - /* [ option address ] */ ; - DIP { SELF - /* [ contract (option address) ] */ ; - PUSH mutez 0 - /* [ mutez : contract (option address) ] */ } - /* [ option address : mutez : contract (option address) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ } - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } - { SELF - /* [ contract (option address) : address ] */ ; - ADDRESS - /* [ address : address ] */ ; - SENDER - /* [ address : address : address ] */ ; - IFCMPNEQ { FAIL } { /* [ address ] */ } ; - CONTRACT string - /* [ option (contract string) ] */ ; - IF_SOME { /* [ contract string ] */ } { FAIL } ; - PUSH mutez 0 - /* [ mutez : contract string ] */ ; - PUSH string "abcdefg" - /* [ string : mutez : contract string ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } } -Well typed (Gas remaining: 1039991.809 units remaining) michelson_test_scripts/mini_scenarios/create_contract_simple.tz -{ parameter unit ; - storage unit ; - code { CAR - /* [ string ] */ ; - PUSH string "foo" /* [ pair (list operation) string ] */ - /* [ list operation : string ] */ ; - PUSH mutez 0 - /* [ mutez : string : unit ] */ ; - NONE key_hash - /* [ option key_hash : mutez : string : unit ] */ ; - CREATE_CONTRACT - { parameter string ; - storage string ; - code { CAR ; NIL operation ; PAIR } } - /* [ operation : address : unit ] */ ; - DROP - /* [ address : unit ] */ ; - DROP - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.750 units remaining) michelson_test_scripts/mini_scenarios/default_account.tz -{ parameter key_hash ; - storage unit ; - code { DIP { UNIT /* [ unit ] */ } - /* [ pair key_hash unit : unit ] */ ; - CAR - /* [ key_hash : unit ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : unit ] */ ; - PUSH mutez 100000000 - /* [ mutez : contract unit : unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : unit ] */ ; - NIL operation - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.110 units remaining) michelson_test_scripts/mini_scenarios/emit_events.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - PUSH string "right" - /* [ string : unit ] */ ; - RIGHT nat - /* [ or nat string : unit ] */ ; - EMIT %tag1 - /* [ operation : unit ] */ ; - PUSH nat 2 - /* [ nat : operation : unit ] */ ; - LEFT string - /* [ or nat string : operation : unit ] */ ; - EMIT %tag2 (or (nat %int) (string %str)) - /* [ operation : operation : unit ] */ ; - NIL operation - /* [ list operation : operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : operation : unit ] */ ; - CONS - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039990.644 units remaining) michelson_test_scripts/mini_scenarios/execution_order_appender.tz -{ parameter unit ; - storage (pair address string) ; - code { CDR - /* [ pair address string ] */ ; - DUP - /* [ pair address string : pair address string ] */ ; - UNPAIR - /* [ address : string : pair address string ] */ ; - CONTRACT string - /* [ option (contract string) : string : pair address string ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract string : string : pair address string ] */ ; - DIG 2 - /* [ string : mutez : contract string : pair address string ] */ ; - TRANSFER_TOKENS - /* [ operation : pair address string ] */ ; - NIL operation - /* [ list operation : operation : pair address string ] */ ; - SWAP - /* [ operation : list operation : pair address string ] */ ; - CONS - /* [ list operation : pair address string ] */ ; - PAIR - /* [ pair (list operation) address string ] */ } } -Well typed (Gas remaining: 1039992.571 units remaining) michelson_test_scripts/mini_scenarios/execution_order_caller.tz -{ parameter unit ; - storage (list address) ; - code { CDR - /* [ list address ] */ ; - DUP - /* [ list address : list address ] */ ; - MAP { CONTRACT unit - /* [ option (contract unit) : list address ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract unit : list address ] */ ; - UNIT - /* [ unit : mutez : contract unit : list address ] */ ; - TRANSFER_TOKENS - /* [ operation : list address ] */ } - /* [ list operation : list address ] */ ; - PAIR - /* [ pair (list operation) (list address) ] */ } } -Well typed (Gas remaining: 1039996.980 units remaining) michelson_test_scripts/mini_scenarios/execution_order_storer.tz -{ parameter string ; - storage string ; - code { UNPAIR - /* [ string : string ] */ ; - SWAP - /* [ string : string ] */ ; - CONCAT - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039349.178 units remaining) michelson_test_scripts/mini_scenarios/fa12_reference.tz -{ parameter - (or (or (or (pair %transfer (address :from) (pair (address :to) (nat :value))) - (pair %approve (address :spender) (nat :value))) - (or (pair %getAllowance (pair (address :owner) (address :spender)) (contract nat)) - (or (pair %getBalance (address :owner) (contract nat)) - (pair %getTotalSupply unit (contract nat))))) - (or (or (bool %setPause) (address %setAdministrator)) - (or (pair %getAdministrator unit (contract address)) - (or (pair %mint (address :to) (nat :value)) (pair %burn (address :from) (nat :value)))))) ; - storage - (pair (big_map %ledger - (address :user) - (pair (nat :balance) (map :approvals (address :spender) (nat :value)))) - (pair (address %admin) (pair (bool %paused) (nat %totalSupply)))) ; - code { CAST (pair (or (or (or (pair address (pair address nat)) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat))))) - (pair (big_map address (pair nat (map address nat))) (pair address (pair bool nat)))) - /* [ pair (or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat))))) - (big_map address (pair nat (map address nat))) - address - bool - nat ] */ ; - DUP - /* [ pair (or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat))))) - (big_map address (pair nat (map address nat))) - address - bool - nat - : pair (or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat))))) - (big_map address (pair nat (map address nat))) - address - bool - nat ] */ ; - CAR - /* [ or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat)))) - : pair (or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat))))) - (big_map address (pair nat (map address nat))) - address - bool - nat ] */ ; - DIP { CDR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ or (or (or (pair address address nat) (pair address nat)) - (or (pair (pair address address) (contract nat)) - (or (pair address (contract nat)) (pair unit (contract nat))))) - (or (or bool address) - (or (pair unit (contract address)) (or (pair address nat) (pair address nat)))) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_LEFT - { IF_LEFT - { IF_LEFT - { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "TokenOperationsArePaused" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address : pair address address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { EMPTY_MAP - address - nat - /* [ map address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { CDR - /* [ map address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address : map address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : map address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { SENDER - /* [ address : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat : nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SUB - /* [ int : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { DIP { DUP - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat : nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "NotEnoughAllowance" - /* [ string : pair nat nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ address : nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : pair address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address address nat : pair address address nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DROP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { EMPTY_MAP - address - nat - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EMPTY_MAP - address - nat - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ nat : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NONE nat - /* [ option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { SOME - /* [ option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DIP { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option nat : pair address address nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : option nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : option nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair nat (map address nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { SOME - /* [ option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { NONE (pair nat (map address nat)) - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { EMPTY_MAP - address - nat - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SOME - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SOME - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - SWAP - /* [ pair address address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ int : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH string - "Internal: Negative total supply" - /* [ string - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair bool nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair bool nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { CDR - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH nat - 0 - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "NotEnoughBalance" - /* [ string : pair nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SUB - /* [ int : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { CAR - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "NotEnoughBalance" - /* [ string : pair nat nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SIZE - /* [ nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NONE (pair nat (map address nat)) - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { SOME - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { SOME - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - SWAP - /* [ pair address address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NEG - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ int : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH string - "Internal: Negative total supply" - /* [ string - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair bool nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair bool nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DROP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { SENDER - /* [ address : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "TokenOperationsArePaused" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { EMPTY_MAP - address - nat - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { CDR - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DUP - /* [ nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { PUSH string - "UnsafeAllowanceChange" - /* [ string : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : address : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { EMPTY_MAP - address - nat - /* [ map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EMPTY_MAP - address - nat - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ nat : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NONE nat - /* [ option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { SOME - /* [ option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DIP { DIP { DUP - /* [ pair address address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address address nat - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : pair address address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option nat : pair address address nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : option nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address nat : option nat : map address nat - : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : option nat : map address nat : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ map address nat : pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) - : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ map address nat : nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : map address nat : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address address nat : pair nat (map address nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair nat (map address nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { SOME - /* [ option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { IF_LEFT - { DUP - /* [ pair (pair address address) (contract nat) - : pair (pair address address) (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ pair address address : pair (pair address address) (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (pair address address) - (big_map address (pair nat (map address nat))) - address - bool - nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair (pair address address) - (big_map address (pair nat (map address nat))) - address - bool - nat - : pair (pair address address) - (big_map address (pair nat (map address nat))) - address - bool - nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ pair address address - : pair (pair address address) - (big_map address (pair nat (map address nat))) - address - bool - nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address address : pair address address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { EMPTY_MAP - address - nat - /* [ map address nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { CDR - /* [ map address nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - /* [ pair address address : map address nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ address : map address nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { /* [ nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { AMOUNT - /* [ mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CONS - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { IF_LEFT - { DUP - /* [ pair address (contract nat) : pair address (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair address (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address (big_map address (pair nat (map address nat))) address bool nat - : pair address (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair address (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { CAR - /* [ nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { AMOUNT - /* [ mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CONS - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair unit (contract nat) : pair unit (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ unit : pair unit (contract nat) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ unit : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ unit : pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair unit (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { AMOUNT - /* [ mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : mutez : contract nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CONS - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } } } } - { IF_LEFT - { IF_LEFT - { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "SenderIsNotAdmin" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } } - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ bool : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ bool : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair bool nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair bool nat : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ bool : bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "SenderIsNotAdmin" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } } - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { IF_LEFT - { DUP - /* [ pair unit (contract address) : pair unit (contract address) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ unit : pair unit (contract address) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ unit : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ contract address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ unit : pair (big_map address (pair nat (map address nat))) address bool nat - : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair unit (big_map address (pair nat (map address nat))) address bool nat - : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { AMOUNT - /* [ mutez : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : mutez : contract address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - TRANSFER_TOKENS - /* [ operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation : operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ operation : list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CONS - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { IF_LEFT - { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "SenderIsNotAdmin" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { NONE (pair nat (map address nat)) - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { EMPTY_MAP - address - nat - /* [ map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SOME - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SOME - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - SWAP - /* [ pair address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address nat : pair address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ int : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH string - "Internal: Negative total supply" - /* [ string - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair bool nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair bool nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DROP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } - { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SENDER - /* [ address : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - COMPARE - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { UNIT - /* [ unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "SenderIsNotAdmin" - /* [ string : unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string unit - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat - : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ big_map address (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : big_map address (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - GET - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH nat - 0 - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "NotEnoughBalance" - /* [ string : pair nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat : nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ nat : nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SUB - /* [ int : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { CAR - /* [ nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat : nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PUSH string - "NotEnoughBalance" - /* [ string : pair nat nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair string nat nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : map address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair nat (map address nat) : pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ pair address nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DUP - /* [ pair nat (map address nat) : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ map address nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SIZE - /* [ nat : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - INT - /* [ int : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - EQ - /* [ bool : pair nat (map address nat) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF { DROP - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NONE (pair nat (map address nat)) - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - { SOME - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } } - { SOME - /* [ option (pair nat (map address nat)) : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - SWAP - /* [ pair address nat : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ address : option (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ address : option (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - UPDATE - /* [ big_map address (pair nat (map address nat)) - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR /* [ pair address bool nat ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair address bool nat ] */ ; - CAR - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) - : big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - DIP { DROP /* [ pair address bool nat ] */ } - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DUP - /* [ pair address nat : pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NEG - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ int : nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ADD - /* [ int - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - ISNAT - /* [ option nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - IF_NONE - { PUSH string - "Internal: Negative total supply" - /* [ string - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair address bool nat : pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair bool nat : pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair bool nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - CDR - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DROP - /* [ bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ nat : bool : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ bool : nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair bool nat : address - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - SWAP - /* [ address : pair bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { DUP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DIP { CAR /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair (big_map address (pair nat (map address nat))) address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - CDR - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : pair address bool nat - : big_map address (pair nat (map address nat)) ] */ ; - DIP { DROP /* [ big_map address (pair nat (map address nat)) ] */ } - /* [ pair address bool nat : big_map address (pair nat (map address nat)) ] */ ; - SWAP - /* [ big_map address (pair nat (map address nat)) : pair address bool nat ] */ ; - PAIR - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ } - /* [ pair address nat - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - DROP - /* [ pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address (pair nat (map address nat))) address bool nat ] */ ; - PAIR - /* [ pair (list operation) (big_map address (pair nat (map address nat))) address bool nat ] */ } } } } } } -Well typed (Gas remaining: 1039995.659 units remaining) michelson_test_scripts/mini_scenarios/fail_on_false.tz -{ parameter bool ; - storage unit ; - code { UNPAIR - /* [ bool : unit ] */ ; - IF { NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } - { DROP /* [] */ ; PUSH string "bang" /* [ string ] */ ; FAILWITH /* [] */ } } } -Well typed (Gas remaining: 1039939.911 units remaining) michelson_test_scripts/mini_scenarios/generic_multisig.tz -{ parameter - (or (unit %default) - (pair %main - (pair :payload - (nat %counter) - (or :action - (lambda %operation unit (list operation)) - (pair %change_keys (nat %threshold) (list %keys key)))) - (list %sigs (option signature)))) ; - storage (pair (nat %stored_counter) (pair (nat %threshold) (list %keys key))) ; - code { UNPAIR - /* [ or unit - (pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature))) : pair nat nat (list key) ] */ ; - IF_LEFT - { DROP - /* [ pair nat nat (list key) ] */ ; - NIL operation - /* [ list operation : pair nat nat (list key) ] */ ; - PAIR - /* [ pair (list operation) nat nat (list key) ] */ } - { PUSH mutez - 0 - /* [ mutez - : pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) : pair nat nat (list key) ] */ ; - AMOUNT - /* [ mutez : mutez - : pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) : pair nat nat (list key) ] */ ; - ASSERT_CMPEQ ; - SWAP - /* [ pair nat nat (list key) - : pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) ] */ ; - DUP - /* [ pair nat nat (list key) : pair nat nat (list key) - : pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) ] */ ; - DIP { SWAP - /* [ pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) : pair nat nat (list key) ] */ } - /* [ pair nat nat (list key) - : pair (pair nat (or (lambda unit (list operation)) (pair nat (list key)))) - (list (option signature)) : pair nat nat (list key) ] */ ; - DIP { UNPAIR - /* [ pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - DUP - /* [ pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - SELF - /* [ contract unit - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - ADDRESS - /* [ address - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - CHAIN_ID - /* [ chain_id : address - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - PAIR - /* [ pair chain_id address - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - PAIR - /* [ pair (pair chain_id address) nat (or (lambda unit (list operation)) (pair nat (list key))) - : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - PACK - /* [ bytes : pair nat (or (lambda unit (list operation)) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - DIP { UNPAIR @counter - /* [ nat : or (lambda unit (list operation)) (pair nat (list key)) - : list (option signature) : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ nat : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ bytes : nat : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - SWAP - /* [ nat : bytes : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ pair nat nat (list key) : nat : bytes : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - UNPAIR @stored_counter - /* [ nat : pair nat (list key) : nat : bytes : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ nat : pair nat (list key) : bytes : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ nat : nat : pair nat (list key) : bytes : list (option signature) - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - ASSERT_CMPEQ ; - DIP { SWAP - /* [ list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ pair nat (list key) : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - UNPAIR @threshold @keys - /* [ nat : list key : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP { PUSH @valid - nat - 0 - /* [ nat : list key : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - SWAP - /* [ list key : nat : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - ITER { DIP { SWAP - /* [ list (option signature) : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ key : list (option signature) : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - SWAP - /* [ list (option signature) : key : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - IF_CONS - { IF_SOME - { SWAP - /* [ list (option signature) : signature : key : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ key : signature : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP 2 - { DUP 2 - /* [ bytes : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ key : signature : bytes : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - { DUP 3 - /* [ bytes : key : signature : bytes : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP { CHECK_SIGNATURE - /* [ bool : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ bytes : bool : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - SWAP - /* [ bool : bytes : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - IF { DROP - /* [ nat : bytes : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - { FAILWITH /* [] */ } } ; - PUSH nat - 1 - /* [ nat : nat : bytes : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - ADD @valid - /* [ nat : bytes : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ list (option signature) : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - { SWAP - /* [ key : list (option signature) : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DROP - /* [ list (option signature) : nat : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } } - { FAIL } ; - SWAP - /* [ nat : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ nat : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } - /* [ nat : nat : list (option signature) : bytes - : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - ASSERT_CMPLE ; - IF_CONS - { FAIL } - { /* [ bytes : or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ } ; - DROP - /* [ or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - DIP { UNPAIR - /* [ nat : pair nat (list key) ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat (list key) ] */ ; - ADD @new_counter - /* [ nat : pair nat (list key) ] */ ; - PAIR - /* [ pair nat nat (list key) ] */ } - /* [ or (lambda unit (list operation)) (pair nat (list key)) - : pair nat nat (list key) ] */ ; - IF_LEFT - { UNIT - /* [ unit : lambda unit (list operation) : pair nat nat (list key) ] */ ; - EXEC - /* [ list operation : pair nat nat (list key) ] */ } - { DIP { CAR /* [ nat ] */ } - /* [ pair nat (list key) : nat ] */ ; - SWAP - /* [ nat : pair nat (list key) ] */ ; - PAIR - /* [ pair nat nat (list key) ] */ ; - NIL operation - /* [ list operation : pair nat nat (list key) ] */ } ; - PAIR - /* [ pair (list operation) nat nat (list key) ] */ } } } -Well typed (Gas remaining: 1039536.287 units remaining) michelson_test_scripts/mini_scenarios/groth16.tz -{ storage unit ; - parameter - (pair (pair (bls12_381_fr %input_x) (bls12_381_fr %input_y)) - (pair (pair (bls12_381_g1 %proof_a) (bls12_381_g2 %proof_b)) (bls12_381_g1 %proof_c))) ; - code { CAR - /* [ pair (pair bls12_381_fr bls12_381_fr) (pair bls12_381_g1 bls12_381_g2) bls12_381_g1 ] */ ; - UNPPAIPPAIIR ; - DIP 5 - { PUSH @vk_gamma_c - bls12_381_g1 - 0x063bd6e11e2fcaac1dd8cf68c6b1925a73c3c583e298ed37c41c3715115cf96358a42dbe85a0228cbfd8a6c8a8c54cd015b5ae2860d1cc47f84698d951f14d9448d03f04df2ca0ffe609a2067d6f1a892163a5e05e541279134cae52b1f23c6b - /* [ bls12_381_g1 ] */ ; - PUSH @vk_gamma_b - bls12_381_g1 - 0x11f5b5db1da7f1f26217edcce2219d016003af6e5b4d1ca3ad0ff477e354717e658bf16beddc4f4fb76ce39d3327811e0601709dc7ed98c70463cfa1ba33f99851b52b51d1a042d7425bec6277287441c399973632445ce61e7fdd63a70f0f60 - /* [ bls12_381_g1 : bls12_381_g1 ] */ ; - PUSH @vk_gamma_a - bls12_381_g1 - 0x03535a322edd23c55b0ca025e54d450d95df49cc9ee873dcd500e8219f4771264bf159b3b105954d85c7bea8ffe1ea0400c767fe58989366c2837fba76f1b4f46644f19be8ad01e22d894b649e427e0d7e04677ee3919d982f0f96bb0a2f0c34 - /* [ bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PUSH @vk_delta - bls12_381_g2 - 0x10c6d5cdca84fc3c7f33061add256f48e0ab03a697832b338901898b650419eb6f334b28153fb73ad2ecd1cd2ac67053161e9f46cfbdaf7b1132a4654a55162850249650f9b873ac3113fa8c02ef1cd1df481480a4457f351d28f4da89d19fa405c3d77f686dc9a24d2681c9184bf2b091f62e6b24df651a3da8bd7067e14e7908fb02f8955b84af5081614cb5bc49b416d9edf914fc608c441b3f2eb8b6043736ddb9d4e4d62334a23b5625c14ef3e1a7e99258386310221b22d83a5eac035c - /* [ bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PUSH @vk_gamma - bls12_381_g2 - 0x16dcbd28bff336c2649c7dd1d8391ac7ce6f7ef0124a9db7a4a485a124199eded7ce963c1c18aee1eca9994fe06f192c00e0fb653e1fc737d8d0e2f2f91424ca01f6e6e7c5c04f1c43db03a2900cf6b942aaed6ae77daea6200e094b78c38d770028d531a9d1a118ec23d5a39be7aa6dc28f778da1988856d2235c4a35e81fa48380f050d4baf7ebd7b5e058bf294da916afc34562f097c02a8fcbcf62a00de44f8ae6cfa7acb8ad254e3aeea8b2af12f65b7ee0f54855cb9bd432f3436f238f - /* [ bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PUSH @vk_b - bls12_381_g2 - 0x0e9383f98df2c6e8b5b45f3876c3384596a0cdbc41349f83c4380bf463a050cdbd1d5057aa483a642e66486d1ed7362a1869e423c3877095e215c17282b11108601166f928043254bbce603bf86f4cec9f2e97e9660e98e4f5bce9b2b3bbacb40946b702ccfcc9a31e0bfc1543a2128edcc95807740a2310ae25eb47b935648e392c58dfae5b5e899d3b970d64e4e9e209741ea8bfedcfcc16b3fd890ff02c788ec0943feaaf01bbb354317acb85fcfd611133e4e563d53ca4e0f50e21cf2e7e - /* [ bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - PUSH @vk_a - bls12_381_g1 - 0x1040577c7d349e332735fc947c868c24a665f812f5dc1e7f60e65e2df80be2267a4b7341ed2287285fccd517acd96d910abba947235c364553aa6445f2f2b3a1a728225a330286ba5197ab87f0edc560d89fc7b623812f7d0d633341726e597a - /* [ bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ } - /* [ bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP - /* [ bls12_381_fr : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 12 - /* [ bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_fr : bls12_381_g1 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - MUL - /* [ bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 3 - /* [ bls12_381_fr : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 14 - /* [ bls12_381_g1 : bls12_381_fr : bls12_381_g1 : bls12_381_fr : bls12_381_fr - : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - MUL - /* [ bls12_381_g1 : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - ADD - /* [ bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 11 - /* [ bls12_381_g1 : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - ADD @vk_x - /* [ bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - NIL (pair bls12_381_g1 bls12_381_g2) - /* [ list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 : bls12_381_fr - : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - DUP 9 - /* [ bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 - : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 9 - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - NEG - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PAIR - /* [ pair bls12_381_g1 bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - CONS - /* [ list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 : bls12_381_fr - : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - DUP 11 - /* [ bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 - : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 8 - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - NEG - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PAIR - /* [ pair bls12_381_g1 bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - CONS - /* [ list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 : bls12_381_fr - : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - DUP 10 - /* [ bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 - : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 3 - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - NEG - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PAIR - /* [ pair bls12_381_g1 bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - CONS - /* [ list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 : bls12_381_fr - : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - DUP 6 - /* [ bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 - : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 - : bls12_381_g1 : bls12_381_g1 ] */ ; - DUP 6 - /* [ bls12_381_g1 : bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - PAIR - /* [ pair bls12_381_g1 bls12_381_g2 : list (pair bls12_381_g1 bls12_381_g2) - : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - CONS - /* [ list (pair bls12_381_g1 bls12_381_g2) : bls12_381_g1 : bls12_381_fr - : bls12_381_fr : bls12_381_g1 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g2 : bls12_381_g2 : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 - : bls12_381_g1 ] */ ; - PAIRING_CHECK - /* [ bool : bls12_381_g1 : bls12_381_fr : bls12_381_fr : bls12_381_g1 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g2 : bls12_381_g2 - : bls12_381_g2 : bls12_381_g1 : bls12_381_g1 : bls12_381_g1 ] */ ; - ASSERT ; - DROP 13 - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039992.503 units remaining) michelson_test_scripts/mini_scenarios/hardlimit.tz -{ parameter unit ; - storage int ; - code { CDR - /* [ int ] */ ; - DUP - /* [ int : int ] */ ; - PUSH int 0 - /* [ int : int : int ] */ ; - CMPLT ; - IF { PUSH int -1 /* [ int : int ] */ ; ADD /* [ int ] */ } { FAIL } ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039991.492 units remaining) michelson_test_scripts/mini_scenarios/large_error.tz -{ parameter int ; - storage unit ; - code { CAR - /* [ int ] */ ; - PUSH string "a" - /* [ string : int ] */ ; - SWAP - /* [ int : string ] */ ; - PUSH bool True - /* [ bool : int : string ] */ ; - LOOP { SWAP - /* [ string : int ] */ ; - DUP - /* [ string : string : int ] */ ; - CONCAT - /* [ string : int ] */ ; - SWAP - /* [ int : string ] */ ; - PUSH int -1 - /* [ int : int : string ] */ ; - ADD - /* [ int : string ] */ ; - DUP - /* [ int : int : string ] */ ; - GT - /* [ bool : int : string ] */ } - /* [ int : string ] */ ; - DROP - /* [ string ] */ ; - FAILWITH - /* [] */ } } -Well typed (Gas remaining: 1035259.369 units remaining) michelson_test_scripts/mini_scenarios/large_flat_contract.tz -{ parameter unit ; - storage unit ; - code { { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - { UNIT /* [ unit : pair unit unit ] */ ; DROP /* [ pair unit unit ] */ } ; - CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1032066.594 units remaining) michelson_test_scripts/mini_scenarios/large_str_id.tz -{ parameter (or int unit) ; - storage (pair string string) ; - code { UNPAIR - /* [ or int unit : pair string string ] */ ; - IF_LEFT - { DIP 1 { UNPAIR /* [ string : string ] */ ; DROP /* [ string ] */ } - /* [ int : string ] */ ; - DUP - /* [ int : int : string ] */ ; - NEQ - /* [ bool : int : string ] */ ; - LOOP { SWAP - /* [ string : int ] */ ; - DUP - /* [ string : string : int ] */ ; - CONCAT - /* [ string : int ] */ ; - SWAP - /* [ int : string ] */ ; - PUSH int 1 - /* [ int : int : string ] */ ; - SWAP - /* [ int : int : string ] */ ; - SUB - /* [ int : string ] */ ; - DUP - /* [ int : int : string ] */ ; - NEQ - /* [ bool : int : string ] */ } - /* [ int : string ] */ ; - DROP - /* [ string ] */ ; - DUP - /* [ string : string ] */ ; - PAIR - /* [ pair string string ] */ } - { DROP - /* [ pair string string ] */ ; - UNPAIR - /* [ string : string ] */ ; - DUP - /* [ string : string : string ] */ ; - DIP 1 { CONCAT /* [ string ] */ } - /* [ string : string ] */ ; - PAIR - /* [ pair string string ] */ } ; - NIL operation - /* [ list operation : pair string string ] */ ; - PAIR - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ ; - DUP - /* [ pair (list operation) string string : pair (list operation) string string ] */ ; - DROP - /* [ pair (list operation) string string ] */ } } -Well typed (Gas remaining: 1039943.391 units remaining) michelson_test_scripts/mini_scenarios/legacy_multisig.tz -{ parameter - (pair (pair :payload - (nat %counter) - (or :action - (pair :transfer (mutez %amount) (contract %dest unit)) - (or (option %delegate key_hash) - (pair %change_keys (nat %threshold) (list %keys key))))) - (list %sigs (option signature))) ; - storage (pair (nat %stored_counter) (pair (nat %threshold) (list %keys key))) ; - code { UNPAIR - /* [ pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature)) : pair nat nat (list key) ] */ ; - SWAP - /* [ pair nat nat (list key) - : pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature)) ] */ ; - DUP - /* [ pair nat nat (list key) : pair nat nat (list key) - : pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature)) ] */ ; - DIP { SWAP - /* [ pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature)) : pair nat nat (list key) ] */ } - /* [ pair nat nat (list key) - : pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature)) : pair nat nat (list key) ] */ ; - DIP { UNPAIR - /* [ pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - DUP - /* [ pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - SELF - /* [ contract - (pair (pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))))) - (list (option signature))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - ADDRESS - /* [ address - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - CHAIN_ID - /* [ chain_id : address - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - PAIR - /* [ pair chain_id address - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - PAIR - /* [ pair (pair chain_id address) - nat - (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - PACK - /* [ bytes - : pair nat (or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key)))) - : list (option signature) : pair nat nat (list key) ] */ ; - DIP { UNPAIR @counter - /* [ nat - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : list (option signature) : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ nat : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ bytes : nat : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - SWAP - /* [ nat : bytes : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ pair nat nat (list key) : nat : bytes : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - UNPAIR @stored_counter - /* [ nat : pair nat (list key) : nat : bytes : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ nat : pair nat (list key) : bytes : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ nat : nat : pair nat (list key) : bytes : list (option signature) - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - ASSERT_CMPEQ ; - DIP { SWAP - /* [ list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ pair nat (list key) : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - UNPAIR @threshold @keys - /* [ nat : list key : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP { PUSH @valid - nat - 0 - /* [ nat : list key : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - SWAP - /* [ list key : nat : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - ITER { DIP { SWAP - /* [ list (option signature) : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ key : list (option signature) : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - SWAP - /* [ list (option signature) : key : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - IF_CONS - { IF_SOME - { SWAP - /* [ list (option signature) : signature : key : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP { SWAP - /* [ key : signature : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP 2 - { DUP 2 - /* [ bytes : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ key : signature : bytes : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - { DUP 3 - /* [ bytes : key : signature : bytes : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP { CHECK_SIGNATURE - /* [ bool : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ bytes : bool : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - SWAP - /* [ bool : bytes : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - IF { DROP - /* [ nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - { FAILWITH /* [] */ } } ; - PUSH nat - 1 - /* [ nat : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - ADD @valid - /* [ nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ list (option signature) : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - { SWAP - /* [ key : list (option signature) : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DROP - /* [ list (option signature) : nat : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } } - { FAIL } ; - SWAP - /* [ nat : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ nat : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ } - /* [ nat : nat : list (option signature) : bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - ASSERT_CMPLE ; - DROP - /* [ bytes - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DROP - /* [ or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - DIP { UNPAIR - /* [ nat : pair nat (list key) ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat (list key) ] */ ; - ADD @new_counter - /* [ nat : pair nat (list key) ] */ ; - PAIR - /* [ pair nat nat (list key) ] */ } - /* [ or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - NIL operation - /* [ list operation - : or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : pair nat nat (list key) ] */ ; - SWAP - /* [ or (pair mutez (contract unit)) (or (option key_hash) (pair nat (list key))) - : list operation : pair nat nat (list key) ] */ ; - IF_LEFT - { UNPAIR - /* [ mutez : contract unit : list operation : pair nat nat (list key) ] */ ; - UNIT - /* [ unit : mutez : contract unit : list operation : pair nat nat (list key) ] */ ; - TRANSFER_TOKENS - /* [ operation : list operation : pair nat nat (list key) ] */ ; - CONS - /* [ list operation : pair nat nat (list key) ] */ } - { IF_LEFT - { SET_DELEGATE - /* [ operation : list operation : pair nat nat (list key) ] */ ; - CONS - /* [ list operation : pair nat nat (list key) ] */ } - { DIP { SWAP - /* [ pair nat nat (list key) : list operation ] */ ; - CAR - /* [ nat : list operation ] */ } - /* [ pair nat (list key) : nat : list operation ] */ ; - SWAP - /* [ nat : pair nat (list key) : list operation ] */ ; - PAIR - /* [ pair nat nat (list key) : list operation ] */ ; - SWAP - /* [ list operation : pair nat nat (list key) ] */ } } ; - PAIR - /* [ pair (list operation) nat nat (list key) ] */ } } -Well typed (Gas remaining: 1039983.115 units remaining) michelson_test_scripts/mini_scenarios/lockup.tz -{ parameter unit ; - storage (pair timestamp (pair mutez address)) ; - code { CDR - /* [ pair timestamp mutez address ] */ ; - DUP - /* [ pair timestamp mutez address : pair timestamp mutez address ] */ ; - CAR - /* [ timestamp : pair timestamp mutez address ] */ ; - NOW - /* [ timestamp : timestamp : pair timestamp mutez address ] */ ; - CMPLT ; - IF { FAIL } { /* [ pair timestamp mutez address ] */ } ; - DUP - /* [ pair timestamp mutez address : pair timestamp mutez address ] */ ; - CDR - /* [ pair mutez address : pair timestamp mutez address ] */ ; - DUP - /* [ pair mutez address : pair mutez address : pair timestamp mutez address ] */ ; - CAR - /* [ mutez : pair mutez address : pair timestamp mutez address ] */ ; - DIP { CDR /* [ address : pair timestamp mutez address ] */ } - /* [ mutez : address : pair timestamp mutez address ] */ ; - DIP { CONTRACT unit - /* [ option (contract unit) : pair timestamp mutez address ] */ ; - ASSERT_SOME } - /* [ mutez : contract unit : pair timestamp mutez address ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair timestamp mutez address ] */ ; - TRANSFER_TOKENS - /* [ operation : pair timestamp mutez address ] */ ; - NIL operation - /* [ list operation : operation : pair timestamp mutez address ] */ ; - SWAP - /* [ operation : list operation : pair timestamp mutez address ] */ ; - CONS - /* [ list operation : pair timestamp mutez address ] */ ; - PAIR - /* [ pair (list operation) timestamp mutez address ] */ } } -Well typed (Gas remaining: 1039992.614 units remaining) michelson_test_scripts/mini_scenarios/loop.tz -{ parameter int ; - storage unit ; - code { CAR - /* [ int ] */ ; - DUP - /* [ int : int ] */ ; - GT - /* [ bool : int ] */ ; - LOOP { PUSH int 1 - /* [ int : int ] */ ; - SWAP - /* [ int : int ] */ ; - SUB - /* [ int ] */ ; - DUP - /* [ int : int ] */ ; - GT - /* [ bool : int ] */ } - /* [ int ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039738.642 units remaining) michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz -{ parameter - (or (or (or (pair %approve (address %spender) (nat %value)) - (pair %getAllowance - (pair %request (address %owner) (address %spender)) - (contract %callback nat))) - (or (pair %getBalance (address %owner) (contract %callback nat)) - (pair %getTotalSupply (unit %request) (contract %callback nat)))) - (or (pair %mintOrBurn (int %quantity) (address %target)) - (pair %transfer (address %from) (pair (address %to) (nat %value))))) ; - storage - (pair (big_map %tokens address nat) - (pair (big_map %allowances (pair (address %owner) (address %spender)) nat) - (pair (address %admin) (nat %total_supply)))) ; - code { DUP - /* [ pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - CDR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - PUSH mutez - 0 - /* [ mutez - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - AMOUNT - /* [ mutez : mutez - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - COMPARE - /* [ int - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - NEQ - /* [ bool - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - IF { PUSH string - "DontSendTez" - /* [ string - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } ; - SWAP - /* [ pair (or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat))) - (big_map address nat) - (big_map (pair address address) nat) - address - nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ or (or (or (pair address nat) (pair (pair address address) (contract nat))) - (or (pair address (contract nat)) (pair unit (contract nat)))) - (or (pair int address) (pair address address nat)) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_LEFT - { IF_LEFT - { IF_LEFT - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat ] */ ; - DUG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address nat : pair address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ pair address nat : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SENDER - /* [ address : address : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair address nat : nat : pair address address - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address nat : pair address nat : nat : pair address address - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ pair address nat : nat : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : nat : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GT - /* [ bool : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : bool : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ big_map (pair address address) nat : nat : bool : pair address address - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ big_map (pair address address) nat : big_map (pair address address) nat - : nat : bool : pair address address : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ big_map (pair address address) nat : nat : bool : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair address address : big_map (pair address address) nat : nat : bool - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address : pair address address - : big_map (pair address address) nat : nat : bool - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ pair address address : big_map (pair address address) nat : nat : bool - : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : nat : bool : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : nat : bool : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : nat : bool : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - COMPARE - /* [ int : bool : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GT - /* [ bool : bool : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - AND - /* [ bool : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { PUSH string - "UnsafeAllowanceChange" - /* [ string : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address : big_map (pair address address) nat - : pair address nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address : big_map (pair address address) nat - : pair address nat ] */ ; - DUG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat - : pair address address : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : pair address address - : big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ big_map (pair address address) nat : pair address nat - : pair address address : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair address nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ nat : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ nat : nat : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ nat : nat : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - EQ - /* [ bool : nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { DROP - /* [ big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NONE nat - /* [ option nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { SOME - /* [ option nat : big_map (pair address address) nat : pair address nat - : pair address address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 3 - /* [ pair address address : option nat : big_map (pair address address) nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - UPDATE - /* [ big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (pair address address) (contract nat) ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (pair address address) (contract nat) ] */ ; - DIG 2 - /* [ pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair (pair address address) (contract nat) : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair (pair address address) (contract nat) - : pair (pair address address) (contract nat) : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ pair (pair address address) (contract nat) : list operation - : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ contract nat : list operation : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH mutez - 0 - /* [ mutez : contract nat : list operation - : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : mutez : contract nat : list operation - : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : mutez - : contract nat : list operation : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map (pair address address) nat : mutez : contract nat : list operation - : pair (pair address address) (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair (pair address address) (contract nat) - : big_map (pair address address) nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ pair address address : big_map (pair address address) nat : mutez - : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - TRANSFER_TOKENS - /* [ operation : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CONS - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } } - { IF_LEFT - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address (contract nat) ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address (contract nat) ] */ ; - DIG 2 - /* [ pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair address (contract nat) : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address (contract nat) : pair address (contract nat) : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ pair address (contract nat) : list operation : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ contract nat : list operation : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH mutez - 0 - /* [ mutez : contract nat : list operation : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : mutez : contract nat : list operation : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat : mutez : contract nat : list operation - : pair address (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair address (contract nat) : big_map address nat : mutez : contract nat - : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : big_map address nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - TRANSFER_TOKENS - /* [ operation : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CONS - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair unit (contract nat) ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair unit (contract nat) ] */ ; - DIG 2 - /* [ pair unit (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation : pair unit (contract nat) - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair unit (contract nat) : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH mutez - 0 - /* [ mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : mutez - : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : mutez : contract nat : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - TRANSFER_TOKENS - /* [ operation : list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CONS - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } } } - { IF_LEFT - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair int address ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair int address ] */ ; - DUG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SENDER - /* [ address : address : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NEQ - /* [ bool : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { PUSH string - "OnlyAdmin" - /* [ string : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - FAILWITH - /* [] */ } - { /* [ pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DUP - /* [ pair int address : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : pair int address ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : pair int address ] */ ; - DUG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair int address : big_map address nat : int - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair int address : pair int address : big_map address nat : int - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ pair int address : big_map address nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ address : big_map address nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - ADD - /* [ int : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - ISNAT - /* [ option nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH string - "Cannot burn more than the target's balance." - /* [ string : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - SWAP - /* [ pair int address : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair int address : pair int address : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ pair int address : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ int : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : nat : pair int address ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : nat : pair int address ] */ ; - DUG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : int : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : int : nat - : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : int : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : int : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - ADD - /* [ int : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - ABS - /* [ nat : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat : nat : pair int address ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat : nat : pair int address ] */ ; - DUG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat : nat : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address ] */ ; - CAR - /* [ big_map address nat : pair (big_map (pair address address) nat) address nat - : nat : nat : pair int address ] */ ; - PUSH nat - 0 - /* [ nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address ] */ ; - DIG 4 - /* [ nat : nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ ; - DUP - /* [ nat : nat : nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ ; - DUG 5 - /* [ nat : nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address ] */ ; - COMPARE - /* [ int : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address ] */ ; - EQ - /* [ bool : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat : nat - : pair int address ] */ ; - IF { DIG 3 - /* [ nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ ; - DROP - /* [ big_map address nat : pair (big_map (pair address address) nat) address nat - : nat : pair int address ] */ ; - NONE nat - /* [ option nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ } - { DIG 3 - /* [ nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ ; - SOME - /* [ option nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat - : pair int address ] */ } ; - DIG 4 - /* [ pair int address : option nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat ] */ ; - CDR - /* [ address : option nat : big_map address nat - : pair (big_map (pair address address) nat) address nat : nat ] */ ; - UPDATE - /* [ big_map address nat : pair (big_map (pair address address) nat) address nat - : nat ] */ ; - PAIR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat ] */ ; - DUG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat ] */ ; - DUG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } - { SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address nat ] */ ; - DUG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat : pair address address nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat : pair address address nat ] */ ; - DUG 3 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair address address nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ pair address address nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SENDER - /* [ address : address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - EQ - /* [ bool : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { SWAP - /* [ big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { SENDER - /* [ address : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair address address nat : address : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : address - : big_map address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ pair address address nat : address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ pair address address nat : pair address address : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : pair address address - : big_map address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ pair address address nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 3 - /* [ big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ big_map (pair address address) nat : big_map (pair address address) nat - : nat : pair address address : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ big_map (pair address address) nat : nat : pair address address - : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair address address : big_map (pair address address) nat : nat - : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address : pair address address - : big_map (pair address address) nat : nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ pair address address : big_map (pair address address) nat : nat - : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - SUB - /* [ int : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - ISNAT - /* [ option nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH string - "NotEnoughAllowance" - /* [ string : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : pair address address : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 3 - /* [ big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ nat : nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ nat : nat : nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ nat : nat : big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - EQ - /* [ bool : big_map (pair address address) nat : nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { SWAP - /* [ nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DROP - /* [ big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NONE nat - /* [ option nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { SWAP - /* [ nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SOME - /* [ option nat : big_map (pair address address) nat : pair address address - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 2 - /* [ pair address address : option nat : big_map (pair address address) nat - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - UPDATE - /* [ big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 2 - /* [ pair address address nat : big_map (pair address address) nat - : big_map address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat - : big_map (pair address address) nat : big_map address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ pair address address nat : big_map (pair address address) nat - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ big_map address nat : big_map address nat : nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ big_map address nat : nat : big_map (pair address address) nat - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair address address nat : big_map address nat : nat - : big_map (pair address address) nat : big_map address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : big_map address nat - : nat : big_map (pair address address) nat : big_map address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 5 - /* [ pair address address nat : big_map address nat : nat - : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : big_map address nat : nat : big_map (pair address address) nat - : big_map address nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - SUB - /* [ int : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - ISNAT - /* [ option nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH string - "NotEnoughBalance" - /* [ string : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - FAILWITH - /* [] */ } - { /* [ nat : big_map (pair address address) nat : big_map address nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 2 - /* [ big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ nat : nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ nat : nat : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - EQ - /* [ bool : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { SWAP - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DROP - /* [ big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NONE nat - /* [ option nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { SWAP - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SOME - /* [ option nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 3 - /* [ pair address address nat : option nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : option nat - : big_map address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 4 - /* [ pair address address nat : option nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : option nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - UPDATE - /* [ big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair address address nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ pair address address nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ big_map address nat : big_map address nat : nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 2 - /* [ big_map address nat : nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 4 - /* [ pair address address nat : big_map address nat : nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ pair address address nat : pair address address nat : big_map address nat - : nat : big_map address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 5 - /* [ pair address address nat : big_map address nat : nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : big_map address nat : nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : big_map address nat : nat : big_map address nat - : big_map (pair address address) nat : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - GET - /* [ option nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF_NONE - { PUSH nat - 0 - /* [ nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { /* [ nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - ADD - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PUSH nat - 0 - /* [ nat : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUP - /* [ nat : nat : nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DUG 3 - /* [ nat : nat : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - COMPARE - /* [ int : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - EQ - /* [ bool : big_map address nat : nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - IF { SWAP - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DROP - /* [ big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NONE nat - /* [ option nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } - { SWAP - /* [ nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SOME - /* [ option nat : big_map address nat : big_map (pair address address) nat - : pair address address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ } ; - DIG 3 - /* [ pair address address nat : option nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CDR - /* [ pair address nat : option nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ address : option nat : big_map address nat - : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - UPDATE - /* [ big_map address nat : big_map (pair address address) nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - DIG 2 - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map address nat : big_map (pair address address) nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat : big_map address nat - : big_map (pair address address) nat ] */ ; - SWAP - /* [ big_map address nat : pair (big_map (pair address address) nat) address nat - : big_map (pair address address) nat ] */ ; - PAIR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat ] */ ; - DUP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat ] */ ; - CDR - /* [ pair (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat ] */ ; - CDR - /* [ pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat - : big_map (pair address address) nat ] */ ; - DIG 2 - /* [ big_map (pair address address) nat : pair address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map (pair address address) nat) address nat - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - SWAP - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - CAR - /* [ big_map address nat - : pair (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - NIL operation - /* [ list operation - : pair (big_map address nat) (big_map (pair address address) nat) address nat ] */ ; - PAIR - /* [ pair (list operation) - (big_map address nat) - (big_map (pair address address) nat) - address - nat ] */ } } } } -Well typed (Gas remaining: 1039928.052 units remaining) michelson_test_scripts/mini_scenarios/multiple_en2.tz -{ parameter unit ; - storage (option address) ; - code { SENDER - /* [ address : pair unit (option address) ] */ ; - SELF - /* [ contract unit : address : pair unit (option address) ] */ ; - ADDRESS - /* [ address : address : pair unit (option address) ] */ ; - { /* [ pair (or (or nat nat) unit) int ] */ - COMPARE - /* [ mutez : mutez : pair (or (or nat nat) unit) int ] */ ; - EQ - /* [ bool : pair unit (option address) ] */ ; - IF { CDR - /* [ option address ] */ ; - { /* [ mutez : mutez : pair (or (or nat nat) unit) int ] */ - IF_NONE - { { /* [ pair (or (or nat nat) unit) int ] */ UNIT /* [ unit ] */ ; FAILWITH /* [] */ } } - { /* [ pair (or (or nat nat) unit) int ] */ } - /* [ bool : pair (or (or nat nat) unit) int ] */ } ; - DIP { NIL operation - /* [ pair (or (or nat nat) unit) int : pair (or (or nat nat) unit) int ] */ - /* [ list operation ] */ } - /* [] */ ; - DUP - /* [ or (or nat nat) unit : pair (or (or nat nat) unit) int ] */ ; - CONTRACT %add unit - /* [ or (or nat nat) unit : int ] */ ; - { /* [ pair (or (or nat nat) unit) int ] */ - IF_NONE - { /* [ address : list operation ] */ } - { { UNIT /* [ int ] */ ; FAILWITH /* [] */ } } } ; - DUP - /* [ int : nat ] */ ; - CONTRACT %fact nat - /* [ int ] */ ; - { /* [ unit : int ] */ - IF_NONE { /* [] */ } { { UNIT /* [ list operation : int ] */ ; FAILWITH /* [] */ } } - /* [] */ } ; - DUP - /* [ pair (list operation) int ] */ ; - CONTRACT %add nat - /* [ option (contract nat) : address : list operation ] */ ; - { IF_NONE - { { UNIT /* [ unit : address : list operation ] */ ; FAILWITH /* [] */ } } - { /* [ contract nat : address : list operation ] */ } } ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 12 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT unit - /* [ option (contract unit) : address : list operation ] */ ; - { IF_NONE - { { UNIT /* [ unit : address : list operation ] */ ; FAILWITH /* [] */ } } - { /* [ contract unit : address : list operation ] */ } } ; - PUSH mutez 0 - /* [ mutez : contract unit : address : list operation ] */ ; - PUSH unit Unit - /* [ unit : mutez : contract unit : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %sub nat - /* [ option (contract nat) : address : list operation ] */ ; - { IF_NONE - { { UNIT /* [ unit : address : list operation ] */ ; FAILWITH /* [] */ } } - { /* [ contract nat : address : list operation ] */ } } ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 3 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %add nat - /* [ option (contract nat) : address : list operation ] */ ; - { IF_NONE - { { UNIT /* [ unit : address : list operation ] */ ; FAILWITH /* [] */ } } - { /* [ contract nat : address : list operation ] */ } } ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 5 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DROP - /* [ list operation ] */ ; - DIP { NONE address /* [ option address ] */ } - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } - { CAR - /* [ unit ] */ ; - DUP - /* [ unit : unit ] */ ; - DIP { DIP { PUSH int 0 - /* [ int ] */ ; - PUSH mutez 0 - /* [ mutez : int ] */ ; - NONE key_hash - /* [ option key_hash : mutez : int ] */ } - /* [ unit : option key_hash : mutez : int ] */ ; - DROP - /* [ option key_hash : mutez : int ] */ ; - CREATE_CONTRACT - { parameter (or (or (nat %add) (nat %sub)) (unit %default)) ; - storage int ; - code { AMOUNT ; - PUSH mutez 0 ; - { { COMPARE ; EQ } ; IF {} { { UNIT ; FAILWITH } } } ; - { { DUP ; CAR ; DIP { CDR } } } ; - IF_LEFT - { IF_LEFT { ADD } { SWAP ; SUB } } - { DROP ; DROP ; PUSH int 0 } ; - NIL operation ; - PAIR } } - /* [ operation : address ] */ } - /* [ unit : operation : address ] */ ; - DIP { SELF - /* [ contract unit : operation : address ] */ ; - PUSH mutez 0 - /* [ mutez : contract unit : operation : address ] */ } - /* [ unit : mutez : contract unit : operation : address ] */ ; - TRANSFER_TOKENS - /* [ operation : operation : address ] */ ; - NIL operation - /* [ list operation : operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : operation : address ] */ ; - CONS - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - DIP { SOME /* [ option address ] */ } - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } } } -Well typed (Gas remaining: 1039930.762 units remaining) michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz -{ parameter unit ; - storage (option address) ; - code { SENDER - /* [ address : pair unit (option address) ] */ ; - SELF - /* [ contract unit : address : pair unit (option address) ] */ ; - ADDRESS - /* [ address : address : pair unit (option address) ] */ ; - IFCMPEQ - { CDR - /* [ option address ] */ ; - ASSERT_SOME - /* [ int : pair (or (or nat nat) unit) int ] */ ; - DIP { /* [ pair (or (or nat nat) unit) int ] */ NIL operation /* [ list operation ] */ } - /* [] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %add - unit - /* [ int ] */ - /* [ option (contract unit) : address : list operation ] */ ; - ASSERT_NONE ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %fact - nat - /* [ list operation : int ] */ - /* [ option (contract nat) : address : list operation ] */ ; - ASSERT_NONE ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %add nat - /* [ option (contract nat) : address : list operation ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 12 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT unit - /* [ option (contract unit) : address : list operation ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract unit : address : list operation ] */ ; - PUSH unit Unit - /* [ unit : mutez : contract unit : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %sub nat - /* [ option (contract nat) : address : list operation ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 3 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DUP - /* [ address : address : list operation ] */ ; - CONTRACT %add nat - /* [ option (contract nat) : address : list operation ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract nat : address : list operation ] */ ; - PUSH nat 5 - /* [ nat : mutez : contract nat : address : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : address : list operation ] */ ; - SWAP - /* [ address : operation : list operation ] */ ; - DIP { CONS /* [ list operation ] */ } - /* [ address : list operation ] */ ; - DROP - /* [ list operation ] */ ; - DIP { NONE address /* [ option address ] */ } - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } - { CAR - /* [ unit ] */ ; - DUP - /* [ unit : unit ] */ ; - DIP { DIP { PUSH int 0 - /* [ int ] */ ; - PUSH mutez 0 - /* [ mutez : int ] */ ; - NONE key_hash - /* [ option key_hash : mutez : int ] */ } - /* [ unit : option key_hash : mutez : int ] */ ; - DROP - /* [ option key_hash : mutez : int ] */ ; - CREATE_CONTRACT - { parameter (or (or (nat %add) (nat %sub)) (unit %default)) ; - storage int ; - code { AMOUNT ; - PUSH mutez 0 ; - ASSERT_CMPEQ ; - UNPAIR ; - IF_LEFT - { IF_LEFT { ADD } { SWAP ; SUB } } - { DROP ; DROP ; PUSH int 0 } ; - NIL operation ; - PAIR } } - /* [ operation : address ] */ } - /* [ unit : operation : address ] */ ; - DIP { SELF - /* [ contract unit : operation : address ] */ ; - PUSH mutez 0 - /* [ mutez : contract unit : operation : address ] */ } - /* [ unit : mutez : contract unit : operation : address ] */ ; - TRANSFER_TOKENS - /* [ operation : operation : address ] */ ; - NIL operation - /* [ list operation : operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : operation : address ] */ ; - CONS - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - DIP { SOME /* [ option address ] */ } - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } - /* [ mutez : pair (or (or nat nat) unit) int ] */ } } -Well typed (Gas remaining: 1039997.740 units remaining) michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz -{ parameter (or (unit %a) (string %b)) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.740 units remaining) michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz -{ parameter (or (int %a) (string %b)) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/mini_scenarios/nat_id.tz -{ parameter nat ; - storage nat ; - code { CAR - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/mini_scenarios/noop_bytes.tz -{ parameter bytes ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.040 units remaining) michelson_test_scripts/mini_scenarios/originate_contract.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [ unit ] */ ; - UNIT - /* [ list operation : unit ] */ ; - AMOUNT - /* [ mutez : unit ] */ ; - NONE key_hash - /* [ pair (list operation) unit ] */ ; - CREATE_CONTRACT - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - DIP { DROP - /* [] */ ; - PUSH unit Unit - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ } - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039940.583 units remaining) michelson_test_scripts/mini_scenarios/parameterized_multisig.tz -{ storage (pair bool (pair (map nat (pair bool bool)) (pair key key))) ; - parameter (or nat (pair signature nat)) ; - code { DUP - /* [ pair (or nat (pair signature nat)) bool (map nat (pair bool bool)) key key - : pair (or nat (pair signature nat)) bool (map nat (pair bool bool)) key key ] */ ; - CAR - /* [ or nat (pair signature nat) - : pair (or nat (pair signature nat)) bool (map nat (pair bool bool)) key key ] */ ; - DIP { CDDR } - /* [ or nat (pair signature nat) : pair (map nat (pair bool bool)) key key ] */ ; - IF_LEFT - { DIP { DUP - /* [ pair (map nat (pair bool bool)) key key - : pair (map nat (pair bool bool)) key key ] */ ; - CAR - /* [ map nat (pair bool bool) : pair (map nat (pair bool bool)) key key ] */ } - /* [ nat : map nat (pair bool bool) : pair (map nat (pair bool bool)) key key ] */ ; - GET - /* [ option (pair bool bool) : pair (map nat (pair bool bool)) key key ] */ ; - IF_NONE - { PUSH bool False /* [ bool : pair (map nat (pair bool bool)) key key ] */ } - { DUP - /* [ pair bool bool : pair bool bool : pair (map nat (pair bool bool)) key key ] */ ; - CAR - /* [ bool : pair bool bool : pair (map nat (pair bool bool)) key key ] */ ; - DIP { CDR /* [ bool : pair (map nat (pair bool bool)) key key ] */ } - /* [ bool : bool : pair (map nat (pair bool bool)) key key ] */ ; - AND - /* [ bool : pair (map nat (pair bool bool)) key key ] */ } ; - PAIR - /* [ pair bool (map nat (pair bool bool)) key key ] */ } - { DUP - /* [ pair signature nat : pair signature nat - : pair (map nat (pair bool bool)) key key ] */ ; - CAR - /* [ signature : pair signature nat : pair (map nat (pair bool bool)) key key ] */ ; - DIP { CDR - /* [ nat : pair (map nat (pair bool bool)) key key ] */ ; - DUP - /* [ nat : nat : pair (map nat (pair bool bool)) key key ] */ ; - PACK - /* [ bytes : nat : pair (map nat (pair bool bool)) key key ] */ ; - BLAKE2B - /* [ bytes : nat : pair (map nat (pair bool bool)) key key ] */ } - /* [ signature : bytes : nat : pair (map nat (pair bool bool)) key key ] */ ; - PAIR - /* [ pair signature bytes : nat : pair (map nat (pair bool bool)) key key ] */ ; - SWAP - /* [ nat : pair signature bytes : pair (map nat (pair bool bool)) key key ] */ ; - DIP { DIP { DUP - /* [ pair (map nat (pair bool bool)) key key - : pair (map nat (pair bool bool)) key key ] */ ; - CDR - /* [ pair key key : pair (map nat (pair bool bool)) key key ] */ ; - DIP { CAR /* [ map nat (pair bool bool) ] */ } - /* [ pair key key : map nat (pair bool bool) ] */ ; - DUP - /* [ pair key key : pair key key : map nat (pair bool bool) ] */ } - /* [ pair signature bytes : pair key key : pair key key - : map nat (pair bool bool) ] */ ; - SWAP - /* [ pair key key : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ ; - CAR - /* [ key : pair signature bytes : pair key key : map nat (pair bool bool) ] */ ; - DIP { DUP - /* [ pair signature bytes : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ ; - UNPAIR - /* [ signature : bytes : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ } - /* [ key : signature : bytes : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ ; - CHECK_SIGNATURE - /* [ bool : pair signature bytes : pair key key : map nat (pair bool bool) ] */ } - /* [ nat : bool : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ ; - SWAP - /* [ bool : nat : pair signature bytes : pair key key - : map nat (pair bool bool) ] */ ; - IF { DIP { DROP - /* [ pair key key : map nat (pair bool bool) ] */ ; - SWAP - /* [ map nat (pair bool bool) : pair key key ] */ ; - DUP - /* [ map nat (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - /* [ nat : map nat (pair bool bool) : map nat (pair bool bool) : pair key key ] */ ; - DUP - /* [ nat : nat : map nat (pair bool bool) : map nat (pair bool bool) - : pair key key ] */ ; - DIP { GET - /* [ option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ ; - IF_NONE - { PUSH (pair bool bool) - (Pair False False) - /* [ pair bool bool : map nat (pair bool bool) : pair key key ] */ } - { /* [ pair bool bool : map nat (pair bool bool) : pair key key ] */ } ; - CDR - /* [ bool : map nat (pair bool bool) : pair key key ] */ ; - PUSH bool True - /* [ bool : bool : map nat (pair bool bool) : pair key key ] */ ; - PAIR - /* [ pair bool bool : map nat (pair bool bool) : pair key key ] */ ; - SOME - /* [ option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - /* [ nat : option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - { DIP { DIP { DUP - /* [ pair key key : pair key key : map nat (pair bool bool) ] */ ; - CDR - /* [ key : pair key key : map nat (pair bool bool) ] */ } - /* [ pair signature bytes : key : pair key key : map nat (pair bool bool) ] */ ; - SWAP - /* [ key : pair signature bytes : pair key key : map nat (pair bool bool) ] */ ; - DIP { UNPAIR /* [ signature : bytes : pair key key : map nat (pair bool bool) ] */ } - /* [ key : signature : bytes : pair key key : map nat (pair bool bool) ] */ ; - CHECK_SIGNATURE - /* [ bool : pair key key : map nat (pair bool bool) ] */ } - /* [ nat : bool : pair key key : map nat (pair bool bool) ] */ ; - SWAP - /* [ bool : nat : pair key key : map nat (pair bool bool) ] */ ; - IF { DUP - /* [ nat : nat : pair key key : map nat (pair bool bool) ] */ ; - DIP { DIP { SWAP - /* [ map nat (pair bool bool) : pair key key ] */ ; - DUP - /* [ map nat (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - /* [ nat : map nat (pair bool bool) : map nat (pair bool bool) : pair key key ] */ ; - GET - /* [ option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - /* [ nat : option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ ; - SWAP - /* [ option (pair bool bool) : nat : map nat (pair bool bool) : pair key key ] */ ; - IF_NONE - { PUSH (pair bool bool) - (Pair False False) - /* [ pair bool bool : nat : map nat (pair bool bool) : pair key key ] */ } - { /* [ pair bool bool : nat : map nat (pair bool bool) : pair key key ] */ } ; - CAR - /* [ bool : nat : map nat (pair bool bool) : pair key key ] */ ; - PUSH bool True - /* [ bool : bool : nat : map nat (pair bool bool) : pair key key ] */ ; - SWAP - /* [ bool : bool : nat : map nat (pair bool bool) : pair key key ] */ ; - PAIR - /* [ pair bool bool : nat : map nat (pair bool bool) : pair key key ] */ ; - SOME - /* [ option (pair bool bool) : nat : map nat (pair bool bool) : pair key key ] */ ; - SWAP - /* [ nat : option (pair bool bool) : map nat (pair bool bool) : pair key key ] */ } - { FAIL } } ; - UPDATE - /* [ map nat (pair bool bool) : pair key key ] */ ; - PAIR - /* [ pair (map nat (pair bool bool)) key key ] */ ; - PUSH bool False - /* [ bool : pair (map nat (pair bool bool)) key key ] */ ; - PAIR - /* [ pair bool (map nat (pair bool bool)) key key ] */ } ; - NIL operation - /* [ list operation : pair bool (map nat (pair bool bool)) key key ] */ ; - PAIR - /* [ pair (list operation) bool (map nat (pair bool bool)) key key ] */ } } -Well typed (Gas remaining: 1039980.441 units remaining) michelson_test_scripts/mini_scenarios/parsable_contract.tz -{ parameter int ; - storage (map int address) ; - code { UNPAIR - /* [ int : map int address ] */ ; - PUSH int 0 - /* [ int : int : map int address ] */ ; - SWAP - /* [ int : int : map int address ] */ ; - DUP - /* [ int : int : int : map int address ] */ ; - DUG 2 - /* [ int : int : int : map int address ] */ ; - COMPARE - /* [ int : int : map int address ] */ ; - GT - /* [ bool : int : map int address ] */ ; - IF { SWAP - /* [ map int address : int ] */ ; - SENDER - /* [ address : map int address : int ] */ ; - DIG 2 - /* [ int : address : map int address ] */ ; - SWAP - /* [ address : int : map int address ] */ ; - SOME - /* [ option address : int : map int address ] */ ; - SWAP - /* [ int : option address : map int address ] */ ; - UPDATE - /* [ map int address ] */ } - { SWAP - /* [ map int address : int ] */ ; - DROP - /* [ int ] */ ; - PUSH int 0 - /* [ int : int ] */ ; - SWAP - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - LT - /* [ bool ] */ ; - IF { PUSH string "NEGATIVE_INT" /* [ string ] */ ; FAILWITH /* [] */ } - { PUSH unit Unit - /* [ unit ] */ ; - LEFT (map int address) - /* [ or unit (map int address) ] */ ; - LOOP_LEFT - { DROP - /* [] */ ; - PUSH unit Unit - /* [ unit ] */ ; - LEFT (map int address) - /* [ or unit (map int address) ] */ } - /* [ map int address ] */ } } ; - NIL operation - /* [ list operation : map int address ] */ ; - PAIR - /* [ pair (list operation) (map int address) ] */ } } -Well typed (Gas remaining: 1039997.029 units remaining) michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz -{ parameter (big_map int (ticket string)) ; - storage (big_map int (ticket string)) ; - code { CAR - /* [ big_map int (ticket string) ] */ ; - NIL operation - /* [ list operation : big_map int (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (big_map int (ticket string)) ] */ } } -Well typed (Gas remaining: 1039990.860 units remaining) michelson_test_scripts/mini_scenarios/replay.tz -{ parameter unit ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - SOURCE - /* [ address : list operation : unit ] */ ; - CONTRACT unit - /* [ option (contract unit) : list operation : unit ] */ ; - ASSERT_SOME ; - PUSH mutez 1 - /* [ mutez : contract unit : list operation : unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : list operation : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : list operation : unit ] */ ; - DUP - /* [ operation : operation : list operation : unit ] */ ; - DIP { CONS /* [ list operation : unit ] */ } - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039978.896 units remaining) michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz -{ parameter (pair bytes signature) ; - storage (pair bytes key) ; - code { DUP - /* [ pair (pair bytes signature) bytes key - : pair (pair bytes signature) bytes key ] */ ; - UNPAIR - /* [ pair bytes signature : pair bytes key - : pair (pair bytes signature) bytes key ] */ ; - CAR - /* [ bytes : pair bytes key : pair (pair bytes signature) bytes key ] */ ; - SHA256 - /* [ bytes : pair bytes key : pair (pair bytes signature) bytes key ] */ ; - DIP { CAR /* [ bytes : pair (pair bytes signature) bytes key ] */ } - /* [ bytes : bytes : pair (pair bytes signature) bytes key ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (pair bytes signature) bytes key - : pair (pair bytes signature) bytes key ] */ ; - UNPAIR - /* [ pair bytes signature : pair bytes key - : pair (pair bytes signature) bytes key ] */ ; - SWAP - /* [ pair bytes key : pair bytes signature - : pair (pair bytes signature) bytes key ] */ ; - DIP { UNPAIR - /* [ bytes : signature : pair (pair bytes signature) bytes key ] */ ; - SWAP - /* [ signature : bytes : pair (pair bytes signature) bytes key ] */ } - /* [ pair bytes key : signature : bytes - : pair (pair bytes signature) bytes key ] */ ; - CDR - /* [ key : signature : bytes : pair (pair bytes signature) bytes key ] */ ; - CHECK_SIGNATURE - /* [ bool : pair (pair bytes signature) bytes key ] */ ; - ASSERT ; - CDR - /* [ pair bytes key ] */ ; - DUP - /* [ pair bytes key : pair bytes key ] */ ; - CDR - /* [ key : pair bytes key ] */ ; - HASH_KEY - /* [ key_hash : pair bytes key ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : pair bytes key ] */ ; - BALANCE - /* [ mutez : contract unit : pair bytes key ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair bytes key ] */ ; - TRANSFER_TOKENS - /* [ operation : pair bytes key ] */ ; - NIL operation - /* [ list operation : operation : pair bytes key ] */ ; - SWAP - /* [ operation : list operation : pair bytes key ] */ ; - CONS - /* [ list operation : pair bytes key ] */ ; - PAIR - /* [ pair (list operation) bytes key ] */ } } -Well typed (Gas remaining: 1039994.394 units remaining) michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz -{ parameter (pair bytes (contract bytes)) ; - storage unit ; - code { UNPAIR - /* [ pair bytes (contract bytes) : unit ] */ ; - DIP { NIL operation /* [ list operation : unit ] */ } - /* [ pair bytes (contract bytes) : list operation : unit ] */ ; - UNPAIR - /* [ bytes : contract bytes : list operation : unit ] */ ; - DIP { PUSH mutez 0 /* [ mutez : contract bytes : list operation : unit ] */ } - /* [ bytes : mutez : contract bytes : list operation : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039990.860 units remaining) michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz -{ parameter (pair (pair bytes nat) (contract (ticket bytes))) ; - storage unit ; - code { UNPAIR - /* [ pair (pair bytes nat) (contract (ticket bytes)) : unit ] */ ; - UNPAIR - /* [ pair bytes nat : contract (ticket bytes) : unit ] */ ; - UNPAIR - /* [ bytes : nat : contract (ticket bytes) : unit ] */ ; - TICKET - /* [ option (ticket bytes) : contract (ticket bytes) : unit ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : ticket bytes : contract (ticket bytes) : unit ] */ ; - SWAP - /* [ ticket bytes : mutez : contract (ticket bytes) : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : unit ] */ ; - NIL operation - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039992.799 units remaining) michelson_test_scripts/mini_scenarios/self_address_receiver.tz -{ parameter (lambda unit address) ; - storage unit ; - code { UNPAIR - /* [ lambda unit address : unit ] */ ; - UNIT - /* [ unit : lambda unit address : unit ] */ ; - EXEC - /* [ address : unit ] */ ; - SELF_ADDRESS - /* [ address : address : unit ] */ ; - ASSERT_CMPEQ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.319 units remaining) michelson_test_scripts/mini_scenarios/self_address_sender.tz -{ parameter (contract (lambda unit address)) ; - storage unit ; - code { CAR - /* [ contract (lambda unit address) ] */ ; - BALANCE - /* [ mutez : contract (lambda unit address) ] */ ; - LAMBDA - unit - address - { DROP /* [] */ ; SELF_ADDRESS /* [ address ] */ } - /* [ lambda unit address : mutez : contract (lambda unit address) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - DIP { UNIT /* [ unit ] */ ; NIL operation /* [ list operation : unit ] */ } - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039986.152 units remaining) michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz -{ parameter address ; - storage unit ; - code { CAR - /* [ address ] */ ; - CONTRACT (list (ticket string)) - /* [ option (contract (list (ticket string))) ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract (list (ticket string)) ] */ ; - NIL (ticket string) - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH nat - 1 - /* [ nat : list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH string - "Ticket" - /* [ string : nat : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039981.403 units remaining) michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz -{ parameter address ; - storage unit ; - code { CAR - /* [ address ] */ ; - CONTRACT (list (ticket string)) - /* [ option (contract (list (ticket string))) ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract (list (ticket string)) ] */ ; - NIL (ticket string) - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH nat - 1 - /* [ nat : list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH string - "Ticket" - /* [ string : nat : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH nat - 1 - /* [ nat : list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - PUSH string - "Ticket2" - /* [ string : nat : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) : mutez - : contract (list (ticket string)) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039981.083 units remaining) michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz -{ parameter (or (unit %mint) (contract %send (list (ticket string)))) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or unit (contract (list (ticket string))) : list (ticket string) ] */ ; - IF_LEFT - { DROP - /* [ list (ticket string) ] */ ; - PUSH nat 1 - /* [ nat : list (ticket string) ] */ ; - PUSH string "Ticket" - /* [ string : nat : list (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) ] */ ; - PUSH nat 1 - /* [ nat : list (ticket string) ] */ ; - PUSH string "Ticket2" - /* [ string : nat : list (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { PUSH mutez 0 - /* [ mutez : contract (list (ticket string)) : list (ticket string) ] */ ; - DIG 2 - /* [ list (ticket string) : mutez : contract (list (ticket string)) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL (ticket string) - /* [ list (ticket string) : operation ] */ ; - NIL operation - /* [ list operation : list (ticket string) : operation ] */ ; - DIG 2 - /* [ operation : list operation : list (ticket string) ] */ ; - CONS - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } } -Well typed (Gas remaining: 1039967.113 units remaining) michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz -{ parameter address ; - storage unit ; - code { CAR - /* [ address ] */ ; - CONTRACT - (big_map int (ticket string)) - /* [ option (contract (big_map int (ticket string))) ] */ ; - IF_NONE - { PUSH string "Contract of type `big_map(ticket(string))` not found" - /* [ string ] */ ; - FAILWITH - /* [] */ } - { EMPTY_BIG_MAP - int - (ticket string) - /* [ big_map int (ticket string) : contract (big_map int (ticket string)) ] */ ; - PUSH int - 100 - /* [ int : big_map int (ticket string) - : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - PAIR - /* [ pair (big_map int (ticket string)) int - : contract (big_map int (ticket string)) ] */ ; - LEFT (big_map int (ticket string)) - /* [ or (pair (big_map int (ticket string)) int) (big_map int (ticket string)) - : contract (big_map int (ticket string)) ] */ ; - LOOP_LEFT - { UNPAIR - /* [ big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ int : big_map int (ticket string) - : contract (big_map int (ticket string)) ] */ ; - DUP - /* [ int : int : big_map int (ticket string) - : contract (big_map int (ticket string)) ] */ ; - DUG 2 - /* [ int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - PUSH int - 0 - /* [ int : int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - COMPARE - /* [ int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - LT - /* [ bool : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - IF { PUSH int - 1 - /* [ int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - DUP 3 - /* [ int : int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SUB - /* [ int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ big_map int (ticket string) : int : int - : contract (big_map int (ticket string)) ] */ ; - PUSH nat - 1 - /* [ nat : big_map int (ticket string) : int : int - : contract (big_map int (ticket string)) ] */ ; - PUSH string - "BLUE" - /* [ string : nat : big_map int (ticket string) : int : int - : contract (big_map int (ticket string)) ] */ ; - TICKET - /* [ option (ticket string) : big_map int (ticket string) : int : int - : contract (big_map int (ticket string)) ] */ ; - ASSERT_SOME ; - DIG 3 - /* [ int : ticket string : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ ticket string : int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SOME - /* [ option (ticket string) : int : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ int : option (ticket string) : big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - UPDATE - /* [ big_map int (ticket string) : int - : contract (big_map int (ticket string)) ] */ ; - PAIR - /* [ pair (big_map int (ticket string)) int - : contract (big_map int (ticket string)) ] */ ; - LEFT (big_map int (ticket string)) - /* [ or (pair (big_map int (ticket string)) int) (big_map int (ticket string)) - : contract (big_map int (ticket string)) ] */ } - { SWAP - /* [ int : big_map int (ticket string) - : contract (big_map int (ticket string)) ] */ ; - DROP - /* [ big_map int (ticket string) : contract (big_map int (ticket string)) ] */ ; - RIGHT - (pair (big_map int (ticket string)) int) - /* [ or (pair (big_map int (ticket string)) int) (big_map int (ticket string)) - : contract (big_map int (ticket string)) ] */ } } - /* [ big_map int (ticket string) : contract (big_map int (ticket string)) ] */ ; - SWAP - /* [ contract (big_map int (ticket string)) : big_map int (ticket string) ] */ ; - PUSH mutez - 0 - /* [ mutez : contract (big_map int (ticket string)) - : big_map int (ticket string) ] */ ; - DIG 2 - /* [ big_map int (ticket string) : mutez - : contract (big_map int (ticket string)) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - PUSH unit Unit - /* [ unit : operation ] */ ; - NIL operation - /* [ list operation : unit : operation ] */ ; - DIG 2 - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } } -Well typed (Gas remaining: 1039982.120 units remaining) michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz -{ parameter - (pair (pair (contract %rollup (pair string (ticket string))) (string %rollup_account)) - (pair (nat %ticket_amount) (string %ticket_content))) ; - storage unit ; - code { CAR - /* [ pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - DUP - /* [ pair (pair (contract (pair string (ticket string))) string) nat string - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CAR - /* [ pair (contract (pair string (ticket string))) string - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CAR - /* [ contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - PUSH mutez - 0 - /* [ mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - DUP 3 - /* [ pair (pair (contract (pair string (ticket string))) string) nat string - : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CDR - /* [ pair nat string : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CAR - /* [ nat : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - DUP 4 - /* [ pair (pair (contract (pair string (ticket string))) string) nat string - : nat : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CDR - /* [ pair nat string : nat : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - CDR - /* [ string : nat : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - TICKET - /* [ option (ticket string) : mutez : contract (pair string (ticket string)) - : pair (pair (contract (pair string (ticket string))) string) nat string ] */ ; - ASSERT_SOME ; - DIG 3 - /* [ pair (pair (contract (pair string (ticket string))) string) nat string - : ticket string : mutez : contract (pair string (ticket string)) ] */ ; - CAR - /* [ pair (contract (pair string (ticket string))) string : ticket string - : mutez : contract (pair string (ticket string)) ] */ ; - CDR - /* [ string : ticket string : mutez : contract (pair string (ticket string)) ] */ ; - PAIR - /* [ pair string (ticket string) : mutez - : contract (pair string (ticket string)) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - PUSH unit Unit - /* [ unit : operation ] */ ; - NIL operation - /* [ list operation : unit : operation ] */ ; - DIG 2 - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.563 units remaining) michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz -{ parameter (or (unit %burn_all_tickets) (ticket %receive_tickets string)) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or unit (ticket string) : list (ticket string) ] */ ; - IF_LEFT - { DROP 2 - /* [] */ ; - NIL (ticket string) - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } } -Well typed (Gas remaining: 1039997.300 units remaining) michelson_test_scripts/mini_scenarios/str_id.tz -{ parameter string ; - storage (option string) ; - code { CAR - /* [ string ] */ ; - SOME - /* [ option string ] */ ; - NIL operation - /* [ list operation : option string ] */ ; - PAIR - /* [ pair (list operation) (option string) ] */ } } -Well typed (Gas remaining: 1039974.006 units remaining) michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz -{ parameter - (or (ticket %burn unit) - (pair %mint (contract %destination (ticket unit)) (nat %amount))) ; - storage address ; - code { AMOUNT - /* [ mutez - : pair (or (ticket unit) (pair (contract (ticket unit)) nat)) address ] */ ; - PUSH mutez - 0 - /* [ mutez : mutez - : pair (or (ticket unit) (pair (contract (ticket unit)) nat)) address ] */ ; - ASSERT_CMPEQ ; - UNPAIR - /* [ or (ticket unit) (pair (contract (ticket unit)) nat) : address ] */ ; - IF_LEFT - { READ_TICKET - /* [ pair address unit nat : ticket unit : address ] */ ; - CAR - /* [ address : ticket unit : address ] */ ; - SELF_ADDRESS - /* [ address : address : ticket unit : address ] */ ; - ASSERT_CMPEQ ; - DROP - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ } - { DUP @manager 2 - /* [ address : pair (contract (ticket unit)) nat : address ] */ ; - SENDER - /* [ address : address : pair (contract (ticket unit)) nat : address ] */ ; - ASSERT_CMPEQ ; - UNPAIR - /* [ contract (ticket unit) : nat : address ] */ ; - SWAP - /* [ nat : contract (ticket unit) : address ] */ ; - UNIT - /* [ unit : nat : contract (ticket unit) : address ] */ ; - TICKET - /* [ option (ticket unit) : contract (ticket unit) : address ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : ticket unit : contract (ticket unit) : address ] */ ; - SWAP - /* [ ticket unit : mutez : contract (ticket unit) : address ] */ ; - TRANSFER_TOKENS - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ } ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039971.519 units remaining) michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz -{ parameter (or (ticket %burn nat) (contract %mint_destination (ticket nat))) ; - storage (pair (address %manager) (nat %counter)) ; - code { AMOUNT - /* [ mutez : pair (or (ticket nat) (contract (ticket nat))) address nat ] */ ; - PUSH mutez - 0 - /* [ mutez : mutez - : pair (or (ticket nat) (contract (ticket nat))) address nat ] */ ; - ASSERT_CMPEQ ; - UNPAIR 3 - /* [ or (ticket nat) (contract (ticket nat)) : address : nat ] */ ; - IF_LEFT - { READ_TICKET - /* [ pair address nat nat : ticket nat : address : nat ] */ ; - CAR - /* [ address : ticket nat : address : nat ] */ ; - SELF_ADDRESS - /* [ address : address : ticket nat : address : nat ] */ ; - ASSERT_CMPEQ ; - DROP - /* [ address : nat ] */ ; - NIL operation - /* [ list operation : address : nat ] */ } - { DUP @manager 2 - /* [ address : contract (ticket nat) : address : nat ] */ ; - SENDER - /* [ address : address : contract (ticket nat) : address : nat ] */ ; - ASSERT_CMPEQ ; - PUSH @amount nat 1 - /* [ nat : contract (ticket nat) : address : nat ] */ ; - DUP @counter 4 - /* [ nat : nat : contract (ticket nat) : address : nat ] */ ; - TICKET - /* [ option (ticket nat) : contract (ticket nat) : address : nat ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : ticket nat : contract (ticket nat) : address : nat ] */ ; - SWAP - /* [ ticket nat : mutez : contract (ticket nat) : address : nat ] */ ; - TRANSFER_TOKENS - /* [ operation : address : nat ] */ ; - NIL operation - /* [ list operation : operation : address : nat ] */ ; - SWAP - /* [ operation : list operation : address : nat ] */ ; - CONS - /* [ list operation : address : nat ] */ ; - DIP 2 - { PUSH nat 1 /* [ nat : nat ] */ ; ADD /* [ nat ] */ } - /* [ list operation : address : nat ] */ } ; - PAIR 3 - /* [ pair (list operation) address nat ] */ } } -Well typed (Gas remaining: 1039937.454 units remaining) michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz -{ parameter - (or (ticket %receive unit) - (pair %send (contract %destination (ticket unit)) (nat %amount) (address %ticketer))) ; - storage (pair (address %manager) (big_map %tickets address (ticket unit))) ; - code { AMOUNT - /* [ mutez - : pair (or (ticket unit) (pair (contract (ticket unit)) nat address)) - address - (big_map address (ticket unit)) ] */ ; - PUSH mutez - 0 - /* [ mutez : mutez - : pair (or (ticket unit) (pair (contract (ticket unit)) nat address)) - address - (big_map address (ticket unit)) ] */ ; - ASSERT_CMPEQ ; - UNPAIR - 3 - /* [ or (ticket unit) (pair (contract (ticket unit)) nat address) : address - : big_map address (ticket unit) ] */ ; - IF_LEFT - { READ_TICKET - /* [ pair address unit nat : ticket unit : address - : big_map address (ticket unit) ] */ ; - CAR @ticketer - /* [ address : ticket unit : address : big_map address (ticket unit) ] */ ; - DUP - /* [ address : address : ticket unit : address : big_map address (ticket unit) ] */ ; - DIG 4 - /* [ big_map address (ticket unit) : address : address : ticket unit : address ] */ ; - NONE (ticket unit) - /* [ option (ticket unit) : big_map address (ticket unit) : address : address - : ticket unit : address ] */ ; - DIG 2 - /* [ address : option (ticket unit) : big_map address (ticket unit) : address - : ticket unit : address ] */ ; - GET_AND_UPDATE - /* [ option (ticket unit) : big_map address (ticket unit) : address - : ticket unit : address ] */ ; - IF_SOME - { DIG 3 - /* [ ticket unit : ticket unit : big_map address (ticket unit) : address - : address ] */ ; - PAIR - /* [ pair (ticket unit) (ticket unit) : big_map address (ticket unit) : address - : address ] */ ; - JOIN_TICKETS - /* [ option (ticket unit) : big_map address (ticket unit) : address : address ] */ ; - ASSERT_SOME } - { DIG 2 - /* [ ticket unit : big_map address (ticket unit) : address : address ] */ } ; - SOME - /* [ option (ticket unit) : big_map address (ticket unit) : address : address ] */ ; - DIG 2 - /* [ address : option (ticket unit) : big_map address (ticket unit) : address ] */ ; - GET_AND_UPDATE - /* [ option (ticket unit) : big_map address (ticket unit) : address ] */ ; - ASSERT_NONE ; - SWAP - /* [ address : big_map address (ticket unit) ] */ ; - PAIR - /* [ pair address (big_map address (ticket unit)) ] */ ; - NIL operation - /* [ list operation : pair address (big_map address (ticket unit)) ] */ } - { DUP @manager - 2 - /* [ address : pair (contract (ticket unit)) nat address : address - : big_map address (ticket unit) ] */ ; - SENDER - /* [ address : address : pair (contract (ticket unit)) nat address : address - : big_map address (ticket unit) ] */ ; - ASSERT_CMPEQ ; - UNPAIR - 3 - /* [ contract (ticket unit) : nat : address : address - : big_map address (ticket unit) ] */ ; - DIG 4 - /* [ big_map address (ticket unit) : contract (ticket unit) : nat : address - : address ] */ ; - NONE (ticket unit) - /* [ option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - DUP @ticketer - 5 - /* [ address : option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - GET_AND_UPDATE - /* [ option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - ASSERT_SOME ; - READ_TICKET - /* [ pair address unit nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - GET @total_amount - 4 - /* [ nat : ticket unit : big_map address (ticket unit) : contract (ticket unit) - : nat : address : address ] */ ; - DUP @amount - 5 - /* [ nat : nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - SWAP - /* [ nat : nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - SUB - /* [ int : ticket unit : big_map address (ticket unit) : contract (ticket unit) - : nat : address : address ] */ ; - DUP - /* [ int : int : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - EQ - /* [ bool : int : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - IF { DROP - /* [ ticket unit : big_map address (ticket unit) : contract (ticket unit) : nat - : address : address ] */ ; - DIG 3 - /* [ nat : ticket unit : big_map address (ticket unit) : contract (ticket unit) - : address : address ] */ ; - DROP - /* [ ticket unit : big_map address (ticket unit) : contract (ticket unit) - : address : address ] */ ; - DIG 3 - /* [ address : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : address ] */ ; - DROP - /* [ ticket unit : big_map address (ticket unit) : contract (ticket unit) - : address ] */ ; - DUG 3 - /* [ big_map address (ticket unit) : contract (ticket unit) : address - : ticket unit ] */ } - { ISNAT - /* [ option nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : nat : address : address ] */ ; - ASSERT_SOME @remaining_amount ; - DIG 4 - /* [ nat : nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : address : address ] */ ; - PAIR - /* [ pair nat nat : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : address : address ] */ ; - SWAP - /* [ ticket unit : pair nat nat : big_map address (ticket unit) - : contract (ticket unit) : address : address ] */ ; - SPLIT_TICKET - /* [ option (pair (ticket unit) (ticket unit)) : big_map address (ticket unit) - : contract (ticket unit) : address : address ] */ ; - ASSERT_SOME ; - UNPAIR @to_send @to_keep - /* [ ticket unit : ticket unit : big_map address (ticket unit) - : contract (ticket unit) : address : address ] */ ; - DUG 5 - /* [ ticket unit : big_map address (ticket unit) : contract (ticket unit) - : address : address : ticket unit ] */ ; - SOME - /* [ option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : address : address : ticket unit ] */ ; - DIG 3 - /* [ address : option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : address : ticket unit ] */ ; - GET_AND_UPDATE - /* [ option (ticket unit) : big_map address (ticket unit) - : contract (ticket unit) : address : ticket unit ] */ ; - ASSERT_NONE } ; - DIG 2 - /* [ address : big_map address (ticket unit) : contract (ticket unit) - : ticket unit ] */ ; - PAIR - /* [ pair address (big_map address (ticket unit)) : contract (ticket unit) - : ticket unit ] */ ; - SWAP - /* [ contract (ticket unit) : pair address (big_map address (ticket unit)) - : ticket unit ] */ ; - PUSH mutez - 0 - /* [ mutez : contract (ticket unit) - : pair address (big_map address (ticket unit)) : ticket unit ] */ ; - DIG 3 - /* [ ticket unit : mutez : contract (ticket unit) - : pair address (big_map address (ticket unit)) ] */ ; - TRANSFER_TOKENS - /* [ operation : pair address (big_map address (ticket unit)) ] */ ; - NIL operation - /* [ list operation : operation : pair address (big_map address (ticket unit)) ] */ ; - SWAP - /* [ operation : list operation : pair address (big_map address (ticket unit)) ] */ ; - CONS - /* [ list operation : pair address (big_map address (ticket unit)) ] */ } ; - PAIR - /* [ pair (list operation) address (big_map address (ticket unit)) ] */ } } -Well typed (Gas remaining: 1039959.702 units remaining) michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz -{ parameter - (or (ticket %receive nat) - (pair %send (contract %destination (ticket nat)) (address %ticketer) (nat %id))) ; - storage (pair (address %manager) (big_map %tickets (pair address nat) (ticket nat))) ; - code { AMOUNT - /* [ mutez - : pair (or (ticket nat) (pair (contract (ticket nat)) address nat)) - address - (big_map (pair address nat) (ticket nat)) ] */ ; - PUSH mutez - 0 - /* [ mutez : mutez - : pair (or (ticket nat) (pair (contract (ticket nat)) address nat)) - address - (big_map (pair address nat) (ticket nat)) ] */ ; - ASSERT_CMPEQ ; - UNPAIR - 3 - /* [ or (ticket nat) (pair (contract (ticket nat)) address nat) : address - : big_map (pair address nat) (ticket nat) ] */ ; - IF_LEFT - { READ_TICKET - /* [ pair address nat nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - CAST (pair (address %ticketer) (nat %id) (nat %amount)) - /* [ pair address nat nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - UNPAIR - 3 - /* [ address : nat : nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - DIG 2 - /* [ nat : address : nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - PUSH nat - 1 - /* [ nat : nat : address : nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - ASSERT_CMPEQ ; - PAIR - /* [ pair address nat : ticket nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - DIP { SOME - /* [ option (ticket nat) : address : big_map (pair address nat) (ticket nat) ] */ ; - DIP { SWAP /* [ big_map (pair address nat) (ticket nat) : address ] */ } - /* [ option (ticket nat) : big_map (pair address nat) (ticket nat) : address ] */ } - /* [ pair address nat : option (ticket nat) - : big_map (pair address nat) (ticket nat) : address ] */ ; - GET_AND_UPDATE - /* [ option (ticket nat) : big_map (pair address nat) (ticket nat) : address ] */ ; - ASSERT_NONE ; - SWAP - /* [ address : big_map (pair address nat) (ticket nat) ] */ ; - PAIR - /* [ pair address (big_map (pair address nat) (ticket nat)) ] */ ; - NIL operation - /* [ list operation : pair address (big_map (pair address nat) (ticket nat)) ] */ } - { DUP @manager - 2 - /* [ address : pair (contract (ticket nat)) address nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - SENDER - /* [ address : address : pair (contract (ticket nat)) address nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - ASSERT_CMPEQ ; - UNPAIR - /* [ contract (ticket nat) : pair address nat : address - : big_map (pair address nat) (ticket nat) ] */ ; - DIG 3 - /* [ big_map (pair address nat) (ticket nat) : contract (ticket nat) - : pair address nat : address ] */ ; - NONE (ticket nat) - /* [ option (ticket nat) : big_map (pair address nat) (ticket nat) - : contract (ticket nat) : pair address nat : address ] */ ; - DIG 3 - /* [ pair address nat : option (ticket nat) - : big_map (pair address nat) (ticket nat) : contract (ticket nat) : address ] */ ; - GET_AND_UPDATE - /* [ option (ticket nat) : big_map (pair address nat) (ticket nat) - : contract (ticket nat) : address ] */ ; - ASSERT_SOME ; - SWAP - /* [ big_map (pair address nat) (ticket nat) : ticket nat - : contract (ticket nat) : address ] */ ; - DIG 3 - /* [ address : big_map (pair address nat) (ticket nat) : ticket nat - : contract (ticket nat) ] */ ; - PAIR - /* [ pair address (big_map (pair address nat) (ticket nat)) : ticket nat - : contract (ticket nat) ] */ ; - DUG 2 - /* [ ticket nat : contract (ticket nat) - : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - PUSH mutez - 0 - /* [ mutez : ticket nat : contract (ticket nat) - : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - SWAP - /* [ ticket nat : mutez : contract (ticket nat) - : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - TRANSFER_TOKENS - /* [ operation : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - NIL operation - /* [ list operation : operation - : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - SWAP - /* [ operation : list operation - : pair address (big_map (pair address nat) (ticket nat)) ] */ ; - CONS - /* [ list operation : pair address (big_map (pair address nat) (ticket nat)) ] */ } ; - PAIR - /* [ pair (list operation) address (big_map (pair address nat) (ticket nat)) ] */ } } -Well typed (Gas remaining: 1039992.919 units remaining) michelson_test_scripts/mini_scenarios/tickets_015.tz -{ parameter unit ; - storage (list (ticket string)) ; - code { CDR - /* [ list (ticket string) ] */ ; - PUSH nat 1 - /* [ nat : list (ticket string) ] */ ; - PUSH string "Red" - /* [ string : nat : list (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : list (ticket string) ] */ ; - ASSERT_SOME ; - CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } -Well typed (Gas remaining: 1039985.966 units remaining) michelson_test_scripts/mini_scenarios/tickets_bag_016.tz -{ parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or (ticket string) address : list (ticket string) ] */ ; - IF_LEFT - { CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { SWAP - /* [ list (ticket string) : address ] */ ; - IF_CONS - { DIG 2 - /* [ address : ticket string : list (ticket string) ] */ ; - CONTRACT %ticket - (ticket string) - /* [ option (contract (ticket string)) : ticket string : list (ticket string) ] */ ; - ASSERT_SOME ; - PUSH mutez - 0 - /* [ mutez : contract (ticket string) : ticket string : list (ticket string) ] */ ; - DIG 2 - /* [ ticket string : mutez : contract (ticket string) : list (ticket string) ] */ ; - TRANSFER_TOKENS - /* [ operation : list (ticket string) ] */ ; - NIL operation - /* [ list operation : operation : list (ticket string) ] */ ; - SWAP - /* [ operation : list operation : list (ticket string) ] */ ; - CONS - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { PUSH string "no ticket to send" /* [ string : address ] */ ; FAILWITH /* [] */ } } } } -Well typed (Gas remaining: 1039985.966 units remaining) michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz -{ parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or (ticket string) address : list (ticket string) ] */ ; - IF_LEFT - { CONS - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { SWAP - /* [ list (ticket string) : address ] */ ; - IF_CONS - { DIG 2 - /* [ address : ticket string : list (ticket string) ] */ ; - CONTRACT - (ticket string) - /* [ option (contract (ticket string)) : ticket string : list (ticket string) ] */ ; - ASSERT_SOME ; - PUSH mutez - 0 - /* [ mutez : contract (ticket string) : ticket string : list (ticket string) ] */ ; - DIG 2 - /* [ ticket string : mutez : contract (ticket string) : list (ticket string) ] */ ; - TRANSFER_TOKENS - /* [ operation : list (ticket string) ] */ ; - NIL operation - /* [ list operation : operation : list (ticket string) ] */ ; - SWAP - /* [ operation : list operation : list (ticket string) ] */ ; - CONS - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } - { PUSH string "no ticket to send" /* [ string : address ] */ ; FAILWITH /* [] */ } } } } -Well typed (Gas remaining: 1039997.823 units remaining) michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz -{ parameter (ticket %ticket string) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039960.905 units remaining) michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz -{ parameter (pair address address) ; - storage (list (ticket string)) ; - code { CAR - /* [ pair address address ] */ ; - UNPAIR - /* [ address : address ] */ ; - PUSH nat 1 - /* [ nat : address : address ] */ ; - PUSH string "red" - /* [ string : nat : address : address ] */ ; - TICKET - /* [ option (ticket string) : address : address ] */ ; - ASSERT_SOME ; - PUSH nat 1 - /* [ nat : ticket string : address : address ] */ ; - PUSH string "green" - /* [ string : nat : ticket string : address : address ] */ ; - TICKET - /* [ option (ticket string) : ticket string : address : address ] */ ; - ASSERT_SOME ; - PUSH nat 1 - /* [ nat : ticket string : ticket string : address : address ] */ ; - PUSH string - "green" - /* [ string : nat : ticket string : ticket string : address : address ] */ ; - TICKET - /* [ option (ticket string) : ticket string : ticket string : address - : address ] */ ; - ASSERT_SOME ; - PUSH nat - 1 - /* [ nat : ticket string : ticket string : ticket string : address : address ] */ ; - PUSH string - "blue" - /* [ string : nat : ticket string : ticket string : ticket string : address - : address ] */ ; - TICKET - /* [ option (ticket string) : ticket string : ticket string : ticket string - : address : address ] */ ; - ASSERT_SOME ; - PUSH nat - 1 - /* [ nat : ticket string : ticket string : ticket string : ticket string - : address : address ] */ ; - PUSH string - "blue" - /* [ string : nat : ticket string : ticket string : ticket string - : ticket string : address : address ] */ ; - TICKET - /* [ option (ticket string) : ticket string : ticket string : ticket string - : ticket string : address : address ] */ ; - ASSERT_SOME ; - DIG 5 - /* [ address : ticket string : ticket string : ticket string : ticket string - : ticket string : address ] */ ; - CONTRACT - (pair (pair (ticket string) (ticket string)) address) - /* [ option (contract (pair (pair (ticket string) (ticket string)) address)) - : ticket string : ticket string : ticket string : ticket string - : ticket string : address ] */ ; - IF_NONE - { PUSH string - "option is None" - /* [ string : ticket string : ticket string : ticket string : ticket string - : ticket string : address ] */ ; - FAILWITH - /* [] */ } - { /* [ contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string : ticket string - : ticket string : address ] */ } ; - PUSH mutez - 0 - /* [ mutez : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string : ticket string - : ticket string : address ] */ ; - DIG 7 - /* [ address : mutez - : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string : ticket string - : ticket string ] */ ; - DIG 3 - /* [ ticket string : address : mutez - : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string : ticket string ] */ ; - DIG 4 - /* [ ticket string : ticket string : address : mutez - : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string ] */ ; - PAIR - /* [ pair (ticket string) (ticket string) : address : mutez - : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string ] */ ; - PAIR - /* [ pair (pair (ticket string) (ticket string)) address : mutez - : contract (pair (pair (ticket string) (ticket string)) address) - : ticket string : ticket string : ticket string ] */ ; - TRANSFER_TOKENS - /* [ operation : ticket string : ticket string : ticket string ] */ ; - NIL (ticket string) - /* [ list (ticket string) : operation : ticket string : ticket string - : ticket string ] */ ; - DIG 2 - /* [ ticket string : list (ticket string) : operation : ticket string - : ticket string ] */ ; - CONS - /* [ list (ticket string) : operation : ticket string : ticket string ] */ ; - DIG 2 - /* [ ticket string : list (ticket string) : operation : ticket string ] */ ; - CONS - /* [ list (ticket string) : operation : ticket string ] */ ; - DIG 2 - /* [ ticket string : list (ticket string) : operation ] */ ; - CONS - /* [ list (ticket string) : operation ] */ ; - NIL operation - /* [ list operation : list (ticket string) : operation ] */ ; - DIG 2 - /* [ operation : list operation : list (ticket string) ] */ ; - CONS - /* [ list operation : list (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } -Well typed (Gas remaining: 1039997.740 units remaining) michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz -{ parameter (list (ticket string)) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039985.432 units remaining) michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz -{ parameter - (or (pair %mint_and_send string nat (contract (ticket string))) - (pair %store int (list (pair string (ticket string))))) ; - storage (list (ticket string)) ; - code { UNPAIR - /* [ or (pair string nat (contract (ticket string))) - (pair int (list (pair string (ticket string)))) : list (ticket string) ] */ ; - IF_LEFT - { UNPAIR 3 - /* [ string : nat : contract (ticket string) : list (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : contract (ticket string) : list (ticket string) ] */ ; - IF_NONE - { PUSH string - "option is None" - /* [ string : contract (ticket string) : list (ticket string) ] */ ; - FAILWITH - /* [] */ } - { /* [ ticket string : contract (ticket string) : list (ticket string) ] */ } ; - SWAP - /* [ contract (ticket string) : ticket string : list (ticket string) ] */ ; - PUSH mutez - 0 - /* [ mutez : contract (ticket string) : ticket string : list (ticket string) ] */ ; - DIG 2 - /* [ ticket string : mutez : contract (ticket string) : list (ticket string) ] */ ; - TRANSFER_TOKENS - /* [ operation : list (ticket string) ] */ ; - SWAP - /* [ list (ticket string) : operation ] */ ; - NIL operation - /* [ list operation : list (ticket string) : operation ] */ ; - DIG 2 - /* [ operation : list operation : list (ticket string) ] */ ; - CONS - /* [ list operation : list (ticket string) ] */ } - { CDR - /* [ list (pair string (ticket string)) : list (ticket string) ] */ ; - ITER { CDR - /* [ ticket string : list (ticket string) ] */ ; - CONS - /* [ list (ticket string) ] */ } - /* [ list (ticket string) ] */ ; - NIL operation - /* [ list operation : list (ticket string) ] */ } ; - PAIR - /* [ pair (list operation) (list (ticket string)) ] */ } } -Well typed (Gas remaining: 1039997.074 units remaining) michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz -{ parameter (ticket string) ; - storage (option (ticket string)) ; - code { CAR - /* [ ticket string ] */ ; - SOME - /* [ option (ticket string) ] */ ; - NIL operation - /* [ list operation : option (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (option (ticket string)) ] */ } } -Well typed (Gas remaining: 1039987.411 units remaining) michelson_test_scripts/mini_scenarios/tickets_send_016.tz -{ parameter (pair address nat) ; - storage unit ; - code { CAR - /* [ pair address nat ] */ ; - UNPAIR - /* [ address : nat ] */ ; - CONTRACT (ticket string) - /* [ option (contract (ticket string)) : nat ] */ ; - IF_NONE - { PUSH string "Contract not found" /* [ string : nat ] */ ; FAILWITH /* [] */ } - { PUSH mutez 0 - /* [ mutez : contract (ticket string) : nat ] */ ; - DIG 2 - /* [ nat : mutez : contract (ticket string) ] */ ; - PUSH string "Ticket" - /* [ string : nat : mutez : contract (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : mutez : contract (ticket string) ] */ ; - ASSERT_SOME ; - TRANSFER_TOKENS - /* [ operation ] */ ; - PUSH unit Unit - /* [ unit : operation ] */ ; - NIL operation - /* [ list operation : unit : operation ] */ ; - DIG 2 - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } } -Well typed (Gas remaining: 1039987.976 units remaining) michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz -{ parameter address ; - storage unit ; - code { CAR - /* [ address ] */ ; - CONTRACT (ticket string) - /* [ option (contract (ticket string)) ] */ ; - IF_NONE - { PUSH string "Contract not found" /* [ string ] */ ; FAILWITH /* [] */ } - { PUSH mutez 1 - /* [ mutez : contract (ticket string) ] */ ; - PUSH nat 1 - /* [ nat : mutez : contract (ticket string) ] */ ; - PUSH string "Ticket" - /* [ string : nat : mutez : contract (ticket string) ] */ ; - TICKET - /* [ option (ticket string) : mutez : contract (ticket string) ] */ ; - ASSERT_SOME ; - TRANSFER_TOKENS - /* [ operation ] */ ; - PUSH unit Unit - /* [ unit : operation ] */ ; - NIL operation - /* [ list operation : unit : operation ] */ ; - DIG 2 - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } } -Well typed (Gas remaining: 1039988.632 units remaining) michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz -{ parameter (pair (pair (ticket string) (ticket string)) address) ; - storage (option (ticket string)) ; - code { CAR - /* [ pair (pair (ticket string) (ticket string)) address ] */ ; - UNPAIR - /* [ pair (ticket string) (ticket string) : address ] */ ; - UNPAIR - /* [ ticket string : ticket string : address ] */ ; - DIG 2 - /* [ address : ticket string : ticket string ] */ ; - CONTRACT - (ticket string) - /* [ option (contract (ticket string)) : ticket string : ticket string ] */ ; - IF_NONE - { PUSH string "option is None" - /* [ string : ticket string : ticket string ] */ ; - FAILWITH - /* [] */ } - { /* [ contract (ticket string) : ticket string : ticket string ] */ } ; - PUSH mutez - 0 - /* [ mutez : contract (ticket string) : ticket string : ticket string ] */ ; - DIG 3 - /* [ ticket string : mutez : contract (ticket string) : ticket string ] */ ; - TRANSFER_TOKENS - /* [ operation : ticket string ] */ ; - SWAP - /* [ ticket string : operation ] */ ; - SOME - /* [ option (ticket string) : operation ] */ ; - NIL operation - /* [ list operation : option (ticket string) : operation ] */ ; - DIG 2 - /* [ operation : list operation : option (ticket string) ] */ ; - CONS - /* [ list operation : option (ticket string) ] */ ; - PAIR - /* [ pair (list operation) (option (ticket string)) ] */ } } -Well typed (Gas remaining: 1039986.099 units remaining) michelson_test_scripts/mini_scenarios/tzip4_view.tz -{ parameter - (or (pair %view_const unit (contract nat)) - (pair %view_add (pair int int) (contract int))) ; - storage unit ; - code { CAR - /* [ or (pair unit (contract nat)) (pair (pair int int) (contract int)) ] */ ; - IF_LEFT - { CDR - /* [ contract nat ] */ ; - AMOUNT - /* [ mutez : contract nat ] */ ; - PUSH nat 5 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } - { UNPAIR - /* [ pair int int : contract int ] */ ; - UNPAIR - /* [ int : int : contract int ] */ ; - ADD - /* [ int : contract int ] */ ; - AMOUNT - /* [ mutez : int : contract int ] */ ; - SWAP - /* [ int : mutez : contract int ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/mini_scenarios/very_small.tz -{ parameter unit ; - storage unit ; - code { UNPAIR - /* [ unit : unit ] */ ; - DROP - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039982.378 units remaining) michelson_test_scripts/mini_scenarios/view_check_caller.tz -{ parameter address ; - storage (option address) ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - UNIT - /* [ unit : address : address ] */ ; - VIEW "calls_count" nat - /* [ option nat : address ] */ ; - IF_NONE { UNIT /* [ unit : address ] */ ; FAILWITH /* [] */ } { /* [ nat : address ] */ } ; - DIP { UNIT - /* [ unit : address ] */ ; - VIEW "last_caller" (option address) - /* [ option (option address) ] */ } - /* [ nat : option (option address) ] */ ; - PUSH nat 0 - /* [ nat : nat : option (option address) ] */ ; - IFCMPEQ - { IF_NONE - { UNIT /* [ unit ] */ ; FAILWITH /* [] */ } - { IF_NONE { /* [] */ } { UNIT /* [ unit : address ] */ ; FAILWITH /* [] */ } } ; - NONE address - /* [ option address ] */ } - { IF_NONE - { UNIT /* [ unit ] */ ; FAILWITH /* [] */ } - { IF_NONE { UNIT /* [ unit ] */ ; FAILWITH /* [] */ } { /* [ address ] */ } } ; - SOME - /* [ option address ] */ } ; - NIL operation - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039990.957 units remaining) michelson_test_scripts/mini_scenarios/view_registers_callers.tz -{ parameter unit ; - storage (list address) ; - code { CDR - /* [ list address ] */ ; - SOURCE - /* [ address : list address ] */ ; - CONS - /* [ list address ] */ ; - NIL operation - /* [ list operation : list address ] */ ; - PAIR - /* [ pair (list operation) (list address) ] */ } ; - view "calls_count" unit nat { CDR /* [ list address ] */ ; SIZE /* [ nat ] */ } ; - view "last_caller" - unit - (option address) - { CDR - /* [ list address ] */ ; - IF_CONS - { DIP { DROP /* [] */ } /* [ address ] */ ; SOME /* [ option address ] */ } - { NONE address /* [ option address ] */ } } } -Well typed (Gas remaining: 1039959.449 units remaining) michelson_test_scripts/mini_scenarios/viewable.tz -{ parameter nat ; - storage nat ; - code { CAR - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } ; - view "add_v" nat nat { UNPAIR /* [ nat : nat ] */ ; ADD /* [ nat ] */ } ; - view "mul_v" nat nat { UNPAIR /* [ nat : nat ] */ ; MUL /* [ nat ] */ } ; - view "value" unit nat { CDR /* [ nat ] */ } ; - view "loop" - int - unit - { CAR - /* [ int ] */ ; - DUP - /* [ int : int ] */ ; - EQ - /* [ bool : int ] */ ; - IF { DROP /* [] */ ; UNIT /* [ unit ] */ } - { SELF_ADDRESS - /* [ address : int ] */ ; - SWAP - /* [ int : address ] */ ; - PUSH int -1 - /* [ int : int : address ] */ ; - ADD - /* [ int : address ] */ ; - VIEW "loop" unit - /* [ option unit ] */ ; - ASSERT_SOME } } ; - view "my_external_view" - int - int - { LAMBDA - int - int - { DUP /* [ int : int ] */ ; MUL /* [ int ] */ } - /* [ lambda int int : pair int nat ] */ ; - SWAP - /* [ pair int nat : lambda int int ] */ ; - UNPAIR - /* [ int : nat : lambda int int ] */ ; - DUP 3 - /* [ lambda int int : int : nat : lambda int int ] */ ; - SWAP - /* [ int : lambda int int : nat : lambda int int ] */ ; - EXEC - /* [ int : nat : lambda int int ] */ ; - SWAP - /* [ nat : int : lambda int int ] */ ; - DIG 2 - /* [ lambda int int : nat : int ] */ ; - SWAP - /* [ nat : lambda int int : int ] */ ; - INT - /* [ int : lambda int int : int ] */ ; - EXEC - /* [ int : int ] */ ; - ADD - /* [ int ] */ ; - PUSH int 1000000 - /* [ int : int ] */ ; - NEG - /* [ int : int ] */ ; - ADD - /* [ int ] */ } ; - view "v_external" - address - int - { UNPAIR - /* [ address : nat ] */ ; - PUSH int 33 - /* [ int : address : nat ] */ ; - VIEW "my_external_view" int - /* [ option int : nat ] */ ; - IF_NONE - { DROP - /* [] */ ; - PUSH string "Call to 'my_external_view' returned None" - /* [ string ] */ ; - FAILWITH - /* [] */ } - { ADD /* [ int ] */ } } ; - view "v_entrypoint" - int - int - { LAMBDA - int - int - { DUP /* [ int : int ] */ ; MUL /* [ int ] */ } - /* [ lambda int int : pair int nat ] */ ; - SWAP - /* [ pair int nat : lambda int int ] */ ; - UNPAIR - /* [ int : nat : lambda int int ] */ ; - DUP 3 - /* [ lambda int int : int : nat : lambda int int ] */ ; - SWAP - /* [ int : lambda int int : nat : lambda int int ] */ ; - EXEC - /* [ int : nat : lambda int int ] */ ; - SWAP - /* [ nat : int : lambda int int ] */ ; - DIG 2 - /* [ lambda int int : nat : int ] */ ; - SWAP - /* [ nat : lambda int int : int ] */ ; - INT - /* [ int : lambda int int : int ] */ ; - EXEC - /* [ int : int ] */ ; - ADD - /* [ int ] */ } } -Well typed (Gas remaining: 1039945.231 units remaining) michelson_test_scripts/mini_scenarios/vote_for_delegate.tz -{ parameter (option key_hash) ; - storage - (pair (pair %mgr1 (address %addr) (option %key key_hash)) - (pair %mgr2 (address %addr) (option %key key_hash))) ; - code { DUP - /* [ pair (option key_hash) (pair address (option key_hash)) address (option key_hash) - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - CDAAR %addr @% ; - SENDER - /* [ address : address - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - PAIR %@ %@ - /* [ pair address address - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - UNPAIR - /* [ address : address - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - IFCMPEQ - { UNPAIR - /* [ option key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SWAP - /* [ pair (pair address (option key_hash)) address (option key_hash) - : option key_hash ] */ ; - SET_CADR %key @changed_mgr1_key } - { DUP - /* [ pair (option key_hash) (pair address (option key_hash)) address (option key_hash) - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - CDDAR ; - SENDER - /* [ address : address - : pair (option key_hash) (pair address (option key_hash)) address (option key_hash) ] */ ; - IFCMPEQ - { UNPAIR - /* [ option key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SWAP - /* [ pair (pair address (option key_hash)) address (option key_hash) - : option key_hash ] */ ; - SET_CDDR %key } - { FAIL } } ; - DUP - /* [ pair (pair address (option key_hash)) address (option key_hash) - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - CADR ; - DIP { DUP - /* [ pair (pair address (option key_hash)) address (option key_hash) - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - CDDR } - /* [ option key_hash : option key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - IF_NONE - { IF_NONE - { NONE key_hash - /* [ option key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SET_DELEGATE - /* [ operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SWAP - /* [ operation : list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - CONS - /* [ list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ } - { DROP - /* [ pair (pair address (option key_hash)) address (option key_hash) ] */ ; - NIL operation - /* [ list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ } } - { SWAP - /* [ option key_hash : key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - IF_SOME - { DIP { DUP - /* [ key_hash : key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ } - /* [ key_hash : key_hash : key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - IFCMPEQ - { SOME - /* [ option key_hash - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SET_DELEGATE - /* [ operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - NIL operation - /* [ list operation : operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - SWAP - /* [ operation : list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ ; - CONS - /* [ list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ } - { DROP - /* [ pair (pair address (option key_hash)) address (option key_hash) ] */ ; - NIL operation - /* [ list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ } } - { DROP - /* [ pair (pair address (option key_hash)) address (option key_hash) ] */ ; - NIL operation - /* [ list operation - : pair (pair address (option key_hash)) address (option key_hash) ] */ } } ; - PAIR - /* [ pair (list operation) (pair address (option key_hash)) address (option key_hash) ] */ } } -Well typed (Gas remaining: 1039963.680 units remaining) michelson_test_scripts/mini_scenarios/weather_insurance.tz -{ parameter (pair (signature %signed_weather_data) (nat :rain %actual_level)) ; - storage - (pair (pair (address %under_key) (address %over_key)) - (pair (nat :rain %rain_level) (key %weather_service_key))) ; - code { DUP - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - DUP - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - CAR - /* [ pair signature nat - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - MAP_CDR - { PACK - /* [ bytes : pair signature nat - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - BLAKE2B - /* [ bytes : pair signature nat - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ } ; - SWAP - /* [ pair (pair signature nat) (pair address address) nat key - : pair signature bytes - : pair (pair signature nat) (pair address address) nat key ] */ ; - CDDDR %weather_service_key ; - DIP { UNPAIR - /* [ signature : bytes - : pair (pair signature nat) (pair address address) nat key ] */ } - /* [ key : signature : bytes - : pair (pair signature nat) (pair address address) nat key ] */ ; - CHECK_SIGNATURE @sigok - /* [ bool : pair (pair signature nat) (pair address address) nat key ] */ ; - ASSERT ; - DUP - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - DUP - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - DUP - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key ] */ ; - DIP 3 - { CDR %storage /* [ pair (pair address address) nat key ] */ } - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair (pair address address) nat key ] */ ; - DIP 2 - { CDAR } - /* [ pair (pair signature nat) (pair address address) nat key - : pair (pair signature nat) (pair address address) nat key - : pair address address : pair (pair address address) nat key ] */ ; - DIP { CADR %actual_level } - /* [ pair (pair signature nat) (pair address address) nat key : nat - : pair address address : pair (pair address address) nat key ] */ ; - CDDAR %rain_level ; - CMPLT ; - IF { CAR %under_key /* [ address : pair (pair address address) nat key ] */ } - { CDR %over_key /* [ address : pair (pair address address) nat key ] */ } ; - CONTRACT unit - /* [ option (contract unit) : pair (pair address address) nat key ] */ ; - ASSERT_SOME ; - BALANCE - /* [ mutez : contract unit : pair (pair address address) nat key ] */ ; - UNIT - /* [ unit : mutez : contract unit : pair (pair address address) nat key ] */ ; - TRANSFER_TOKENS @trans.op - /* [ operation : pair (pair address address) nat key ] */ ; - NIL operation - /* [ list operation : operation : pair (pair address address) nat key ] */ ; - SWAP - /* [ operation : list operation : pair (pair address address) nat key ] */ ; - CONS - /* [ list operation : pair (pair address address) nat key ] */ ; - PAIR - /* [ pair (list operation) (pair address address) nat key ] */ } } -Well typed (Gas remaining: 1039967.305 units remaining) michelson_test_scripts/mini_scenarios/xcat.tz -{ parameter bytes ; - storage unit ; - code { CAR @preimage - /* [ bytes ] */ ; - DIP { PUSH @from key_hash "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - /* [ key_hash ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit ] */ ; - PUSH @to - key_hash - "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN" - /* [ key_hash : contract unit ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : contract unit ] */ ; - PUSH @target_hash bytes 0x123456 - /* [ bytes : contract unit : contract unit ] */ ; - PUSH @deadline - timestamp - "2018-08-08 00:00:00Z" - /* [ timestamp : bytes : contract unit : contract unit ] */ } - /* [ bytes : timestamp : bytes : contract unit : contract unit ] */ ; - SWAP - /* [ timestamp : bytes : bytes : contract unit : contract unit ] */ ; - NOW - /* [ timestamp : timestamp : bytes : bytes : contract unit : contract unit ] */ ; - IFCMPLT - { DROP - /* [ bytes : contract unit : contract unit ] */ ; - DROP - /* [ contract unit : contract unit ] */ ; - DROP - /* [ contract unit ] */ ; - BALANCE - /* [ mutez : contract unit ] */ ; - UNIT - /* [ unit : mutez : contract unit ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ } - { DUP - /* [ bytes : bytes : bytes : contract unit : contract unit ] */ ; - SIZE - /* [ nat : bytes : bytes : contract unit : contract unit ] */ ; - PUSH @max_length - nat - 32 - /* [ nat : nat : bytes : bytes : contract unit : contract unit ] */ ; - IFCMPLT - { PUSH string - "preimage too long" - /* [ string : bytes : bytes : contract unit : contract unit ] */ ; - FAILWITH - /* [] */ } - { SHA256 @candidate_hash - /* [ bytes : bytes : contract unit : contract unit ] */ ; - IFCMPNEQ - { PUSH string "invalid preimage" - /* [ string : contract unit : contract unit ] */ ; - FAILWITH - /* [] */ } - { BALANCE - /* [ mutez : contract unit : contract unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : contract unit ] */ ; - TRANSFER_TOKENS - /* [ operation : contract unit ] */ ; - DIP { DROP /* [] */ } - /* [ operation ] */ } } } ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039922.932 units remaining) michelson_test_scripts/mini_scenarios/xcat_dapp.tz -{ parameter - (or (pair %fund - (address %dest) - (pair %settings (bytes %target_hash) (timestamp %deadline))) - (or %claim_refund (bytes %preimage_claim) (bytes %refund_hash))) ; - storage - (pair (big_map - bytes - (pair (pair %recipients (address %from) (address %dest)) - (pair %settings (mutez %amount) (timestamp %deadline)))) - unit) ; - code { NIL @operations - operation - /* [ list operation - : pair (or (pair address bytes timestamp) (or bytes bytes)) - (big_map bytes (pair (pair address address) mutez timestamp)) - unit ] */ ; - SWAP - /* [ pair (or (pair address bytes timestamp) (or bytes bytes)) - (big_map bytes (pair (pair address address) mutez timestamp)) - unit : list operation ] */ ; - UNPAPAIR @% @% @% ; - DIP { DUP - /* [ big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ } - /* [ or (pair address bytes timestamp) (or bytes bytes) - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - IF_LEFT - { UNPAIR @% @% - /* [ address : pair bytes timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DUP - /* [ address : address : pair bytes timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - CONTRACT @dest - unit - /* [ option (contract unit) : address : pair bytes timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_SOME ; - DROP - /* [ address : pair bytes timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SWAP - /* [ pair bytes timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - UNPAIR @% @% - /* [ bytes : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP { AMOUNT @amount - /* [ mutez : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SENDER - /* [ address : mutez : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DUP - /* [ address : address : mutez : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - CONTRACT @from - unit - /* [ option (contract unit) : address : mutez : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_SOME ; - DROP - /* [ address : mutez : timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP { PAIR - /* [ pair mutez timestamp : address - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SWAP - /* [ address : pair mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ } - /* [ address : address : pair mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - PAIR - /* [ pair address address : pair mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - PAIR - /* [ pair (pair address address) mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SOME @xcat - /* [ option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SWAP - /* [ big_map bytes (pair (pair address address) mutez timestamp) - : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ } - /* [ bytes : big_map bytes (pair (pair address address) mutez timestamp) - : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DUP - /* [ bytes : bytes : big_map bytes (pair (pair address address) mutez timestamp) - : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP { MEM - /* [ bool : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - NOT - /* [ bool : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT } - /* [ bytes : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - UPDATE - /* [ big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - PAIR @new_storage - /* [ pair (big_map bytes (pair (pair address address) mutez timestamp)) unit - : list operation ] */ ; - SWAP - /* [ list operation - : pair (big_map bytes (pair (pair address address) mutez timestamp)) unit ] */ ; - PAIR - /* [ pair (list operation) - (big_map bytes (pair (pair address address) mutez timestamp)) - unit ] */ } - { IF_LEFT - { DUP - /* [ bytes : bytes : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SIZE - /* [ nat : bytes : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - PUSH nat - 32 - /* [ nat : nat : bytes - : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_CMPGE ; - SHA256 @hash - /* [ bytes : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DUP - /* [ bytes : bytes : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP { SWAP - /* [ big_map bytes (pair (pair address address) mutez timestamp) : bytes - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ } - /* [ bytes : big_map bytes (pair (pair address address) mutez timestamp) : bytes - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP 2 - { GET - /* [ option (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_SOME ; - DUP - /* [ pair (pair address address) mutez timestamp - : pair (pair address address) mutez timestamp : unit : list operation ] */ ; - CADR @% ; - CONTRACT @dest - unit - /* [ option (contract unit) : pair (pair address address) mutez timestamp : unit - : list operation ] */ ; - ASSERT_SOME ; - SWAP - /* [ pair (pair address address) mutez timestamp : contract unit : unit - : list operation ] */ ; - CDR @% - /* [ pair mutez timestamp : contract unit : unit : list operation ] */ ; - UNPAIR @% @% - /* [ mutez : timestamp : contract unit : unit : list operation ] */ ; - SWAP - /* [ timestamp : mutez : contract unit : unit : list operation ] */ ; - NOW - /* [ timestamp : timestamp : mutez : contract unit : unit : list operation ] */ ; - ASSERT_CMPLT ; - UNIT - /* [ unit : mutez : contract unit : unit : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : unit : list operation ] */ } - /* [ bytes : big_map bytes (pair (pair address address) mutez timestamp) - : operation : unit : list operation ] */ } - { DUP - /* [ bytes : bytes : big_map bytes (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - DIP { GET - /* [ option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_SOME ; - DUP - /* [ pair (pair address address) mutez timestamp - : pair (pair address address) mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - CAAR @% ; - CONTRACT @from - unit - /* [ option (contract unit) : pair (pair address address) mutez timestamp - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_SOME ; - SWAP - /* [ pair (pair address address) mutez timestamp : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - CDR - /* [ pair mutez timestamp : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - UNPAIR @% @% - /* [ mutez : timestamp : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - SWAP - /* [ timestamp : mutez : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - NOW - /* [ timestamp : timestamp : mutez : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - ASSERT_CMPGE ; - UNIT - /* [ unit : mutez : contract unit - : big_map bytes (pair (pair address address) mutez timestamp) : unit - : list operation ] */ ; - TRANSFER_TOKENS - /* [ operation : big_map bytes (pair (pair address address) mutez timestamp) - : unit : list operation ] */ ; - SWAP - /* [ big_map bytes (pair (pair address address) mutez timestamp) : operation - : unit : list operation ] */ } - /* [ bytes : big_map bytes (pair (pair address address) mutez timestamp) - : operation : unit : list operation ] */ } ; - NONE @none - (pair (pair address address) (pair mutez timestamp)) - /* [ option (pair (pair address address) mutez timestamp) : bytes - : big_map bytes (pair (pair address address) mutez timestamp) : operation - : unit : list operation ] */ ; - SWAP - /* [ bytes : option (pair (pair address address) mutez timestamp) - : big_map bytes (pair (pair address address) mutez timestamp) : operation - : unit : list operation ] */ ; - UPDATE @cleared_map - /* [ big_map bytes (pair (pair address address) mutez timestamp) : operation - : unit : list operation ] */ ; - SWAP - /* [ operation : big_map bytes (pair (pair address address) mutez timestamp) - : unit : list operation ] */ ; - DIP { PAIR - /* [ pair (big_map bytes (pair (pair address address) mutez timestamp)) unit - : list operation ] */ ; - SWAP - /* [ list operation - : pair (big_map bytes (pair (pair address address) mutez timestamp)) unit ] */ } - /* [ operation : list operation - : pair (big_map bytes (pair (pair address address) mutez timestamp)) unit ] */ ; - CONS - /* [ list operation - : pair (big_map bytes (pair (pair address address) mutez timestamp)) unit ] */ ; - PAIR - /* [ pair (list operation) - (big_map bytes (pair (pair address address) mutez timestamp)) - unit ] */ } } } -Well typed (Gas remaining: 1039995.909 units remaining) michelson_test_scripts/non_regression/262_bug.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - LAMBDA unit unit { /* [ unit ] */ } - /* [ lambda unit unit ] */ ; - UNIT - /* [ unit : lambda unit unit ] */ ; - EXEC - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.549 units remaining) michelson_test_scripts/non_regression/843_bug.tz -{ parameter never ; - storage (pair address (lambda unit unit)) ; - code { CAR - /* [ never ] */ ; - PUSH address "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - /* [ address : never ] */ ; - DROP - /* [ never ] */ ; - NEVER - /* [] */ } } -Well typed (Gas remaining: 1039996.681 units remaining) michelson_test_scripts/non_regression/bad_annot_contract.tz -{ parameter bytes ; - storage (option (lambda unit unit)) ; - code { CAR - /* [ bytes ] */ ; - UNPACK (lambda unit unit) - /* [ option (lambda unit unit) ] */ ; - NIL operation - /* [ list operation : option (lambda unit unit) ] */ ; - PAIR - /* [ pair (list operation) (option (lambda unit unit)) ] */ } } -Well typed (Gas remaining: 1039993.678 units remaining) michelson_test_scripts/non_regression/pairk_annot.tz -{ parameter unit ; - storage unit ; - code { SENDER - /* [ address : pair unit unit ] */ ; - SOURCE - /* [ address : address : pair unit unit ] */ ; - PAIR 2 - /* [ pair address address : pair unit unit ] */ ; - SOURCE - /* [ address : pair address address : pair unit unit ] */ ; - SENDER - /* [ address : address : pair address address : pair unit unit ] */ ; - PAIR 2 - /* [ pair address address : pair address address : pair unit unit ] */ ; - COMPARE - /* [ int : pair unit unit ] */ ; - DROP - /* [ pair unit unit ] */ ; - CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039992.714 units remaining) michelson_test_scripts/opcodes/abs.tz -{ parameter nat ; - storage unit ; - code { CAR - /* [ nat ] */ ; - DUP - /* [ nat : nat ] */ ; - NEG - /* [ int : nat ] */ ; - ABS - /* [ nat : nat ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039947.571 units remaining) michelson_test_scripts/opcodes/add.tz -{ parameter unit ; - storage unit ; - code { CAR - /* [ unit ] */ ; - PUSH int 2 - /* [ int : unit ] */ ; - PUSH int 2 - /* [ int : int : unit ] */ ; - ADD - /* [ int : unit ] */ ; - PUSH int 4 - /* [ int : int : unit ] */ ; - ASSERT_CMPEQ ; - PUSH int 2 - /* [ int : unit ] */ ; - PUSH int 2 - /* [ int : int : unit ] */ ; - ADD - /* [ int : unit ] */ ; - PUSH int 4 - /* [ int : int : unit ] */ ; - ASSERT_CMPEQ ; - PUSH int 2 - /* [ int : unit ] */ ; - PUSH nat 2 - /* [ nat : int : unit ] */ ; - ADD - /* [ int : unit ] */ ; - PUSH int 4 - /* [ int : int : unit ] */ ; - ASSERT_CMPEQ ; - PUSH nat 2 - /* [ nat : unit ] */ ; - PUSH int 2 - /* [ int : nat : unit ] */ ; - ADD - /* [ int : unit ] */ ; - PUSH int 4 - /* [ int : int : unit ] */ ; - ASSERT_CMPEQ ; - PUSH nat 2 - /* [ nat : unit ] */ ; - PUSH nat 2 - /* [ nat : nat : unit ] */ ; - ADD - /* [ nat : unit ] */ ; - PUSH nat 4 - /* [ nat : nat : unit ] */ ; - ASSERT_CMPEQ ; - PUSH int 60 - /* [ int : unit ] */ ; - PUSH timestamp "2019-09-09T12:08:37Z" - /* [ timestamp : int : unit ] */ ; - ADD - /* [ timestamp : unit ] */ ; - PUSH timestamp "2019-09-09T12:09:37Z" - /* [ timestamp : timestamp : unit ] */ ; - ASSERT_CMPEQ ; - PUSH timestamp "2019-09-09T12:08:37Z" - /* [ timestamp : unit ] */ ; - PUSH int 60 - /* [ int : timestamp : unit ] */ ; - ADD - /* [ timestamp : unit ] */ ; - PUSH timestamp "2019-09-09T12:09:37Z" - /* [ timestamp : timestamp : unit ] */ ; - ASSERT_CMPEQ ; - PUSH mutez 1000 - /* [ mutez : unit ] */ ; - PUSH mutez 1000 - /* [ mutez : mutez : unit ] */ ; - ADD - /* [ mutez : unit ] */ ; - PUSH mutez 2000 - /* [ mutez : mutez : unit ] */ ; - ASSERT_CMPEQ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/add_bls12_381_fr.tz -{ parameter (pair bls12_381_fr bls12_381_fr) ; - storage (option bls12_381_fr) ; - code { CAR - /* [ pair bls12_381_fr bls12_381_fr ] */ ; - UNPAIR - /* [ bls12_381_fr : bls12_381_fr ] */ ; - ADD - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/add_bls12_381_g1.tz -{ parameter (pair bls12_381_g1 bls12_381_g1) ; - storage (option bls12_381_g1) ; - code { CAR - /* [ pair bls12_381_g1 bls12_381_g1 ] */ ; - UNPAIR - /* [ bls12_381_g1 : bls12_381_g1 ] */ ; - ADD - /* [ bls12_381_g1 ] */ ; - SOME - /* [ option bls12_381_g1 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g1 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g1) ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/add_bls12_381_g2.tz -{ parameter (pair bls12_381_g2 bls12_381_g2) ; - storage (option bls12_381_g2) ; - code { CAR - /* [ pair bls12_381_g2 bls12_381_g2 ] */ ; - UNPAIR - /* [ bls12_381_g2 : bls12_381_g2 ] */ ; - ADD - /* [ bls12_381_g2 ] */ ; - SOME - /* [ option bls12_381_g2 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g2 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g2) ] */ } } -Well typed (Gas remaining: 1039994.398 units remaining) michelson_test_scripts/opcodes/add_delta_timestamp.tz -{ parameter (pair int timestamp) ; - storage (option timestamp) ; - code { CAR - /* [ pair int timestamp ] */ ; - DUP - /* [ pair int timestamp : pair int timestamp ] */ ; - CAR - /* [ int : pair int timestamp ] */ ; - DIP { CDR /* [ timestamp ] */ } - /* [ int : timestamp ] */ ; - ADD - /* [ timestamp ] */ ; - SOME - /* [ option timestamp ] */ ; - NIL operation - /* [ list operation : option timestamp ] */ ; - PAIR - /* [ pair (list operation) (option timestamp) ] */ } } -Well typed (Gas remaining: 1039994.398 units remaining) michelson_test_scripts/opcodes/add_timestamp_delta.tz -{ parameter (pair timestamp int) ; - storage (option timestamp) ; - code { CAR - /* [ pair timestamp int ] */ ; - DUP - /* [ pair timestamp int : pair timestamp int ] */ ; - CAR - /* [ timestamp : pair timestamp int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ timestamp : int ] */ ; - ADD - /* [ timestamp ] */ ; - SOME - /* [ option timestamp ] */ ; - NIL operation - /* [ list operation : option timestamp ] */ ; - PAIR - /* [ pair (list operation) (option timestamp) ] */ } } -Well typed (Gas remaining: 1039996.754 units remaining) michelson_test_scripts/opcodes/address.tz -{ parameter (contract unit) ; - storage (option address) ; - code { CAR - /* [ contract unit ] */ ; - ADDRESS - /* [ address ] */ ; - SOME - /* [ option address ] */ ; - NIL operation - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039986.567 units remaining) michelson_test_scripts/opcodes/amount_after_fib_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 3 - /* [ nat : address : address ] */ ; - VIEW "fib" nat - /* [ option nat : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - AMOUNT - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039986.775 units remaining) michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "nonexistent" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_NONE ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - AMOUNT - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039986.392 units remaining) michelson_test_scripts/opcodes/amount_after_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - AMOUNT - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039995.193 units remaining) michelson_test_scripts/opcodes/and.tz -{ parameter (pair :param (bool %first) (bool %second)) ; - storage (option bool) ; - code { CAR - /* [ pair bool bool ] */ ; - UNPAIR - /* [ bool : bool ] */ ; - AND @and - /* [ bool ] */ ; - SOME @res - /* [ option bool ] */ ; - NIL @noop operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ ; - UNPAIR @x @y - /* [ list operation : option bool ] */ ; - PAIR %a %b - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039972.796 units remaining) michelson_test_scripts/opcodes/and_binary.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 5 - /* [ nat ] */ ; - PUSH nat 6 - /* [ nat : nat ] */ ; - AND - /* [ nat ] */ ; - PUSH nat 4 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH nat 6 - /* [ nat ] */ ; - PUSH int 5 - /* [ int : nat ] */ ; - AND - /* [ nat ] */ ; - PUSH nat 4 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH nat 12 - /* [ nat ] */ ; - PUSH int -1 - /* [ int : nat ] */ ; - AND - /* [ nat ] */ ; - PUSH nat 12 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH nat 12 - /* [ nat ] */ ; - PUSH int -5 - /* [ int : nat ] */ ; - AND - /* [ nat ] */ ; - PUSH nat 8 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039978.916 units remaining) michelson_test_scripts/opcodes/and_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x06 - /* [ bytes : bytes ] */ ; - AND - /* [ bytes ] */ ; - PUSH bytes 0x04 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0005 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - AND - /* [ bytes ] */ ; - PUSH bytes 0x0004 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - AND - /* [ bytes ] */ ; - PUSH bytes 0x04 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.814 units remaining) michelson_test_scripts/opcodes/and_logical_1.tz -{ parameter (pair bool bool) ; - storage bool ; - code { CAR - /* [ pair bool bool ] */ ; - UNPAIR - /* [ bool : bool ] */ ; - AND @and - /* [ bool ] */ ; - NIL @noop operation - /* [ list operation : bool ] */ ; - PAIR - /* [ pair (list operation) bool ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/balance.tz -{ parameter unit ; - storage mutez ; - code { DROP - /* [] */ ; - BALANCE - /* [ mutez ] */ ; - NIL operation - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039986.567 units remaining) michelson_test_scripts/opcodes/balance_after_fib_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 3 - /* [ nat : address : address ] */ ; - VIEW "fib" nat - /* [ option nat : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - BALANCE - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039986.775 units remaining) michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "nonexistent" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_NONE ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - BALANCE - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039986.392 units remaining) michelson_test_scripts/opcodes/balance_after_view.tz -{ parameter address ; - storage mutez ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 15000000 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - BALANCE - /* [ mutez : operation ] */ ; - SWAP - /* [ operation : mutez ] */ ; - NIL operation - /* [ list operation : operation : mutez ] */ ; - SWAP - /* [ operation : list operation : mutez ] */ ; - CONS - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039993.494 units remaining) michelson_test_scripts/opcodes/big_map_mem_nat.tz -{ parameter nat ; - storage (pair (big_map nat nat) (option bool)) ; - code { UNPAIR - /* [ nat : pair (big_map nat nat) (option bool) ] */ ; - DIP { CAR /* [ big_map nat nat ] */ ; DUP /* [ big_map nat nat : big_map nat nat ] */ } - /* [ nat : big_map nat nat : big_map nat nat ] */ ; - MEM - /* [ bool : big_map nat nat ] */ ; - SOME - /* [ option bool : big_map nat nat ] */ ; - SWAP - /* [ big_map nat nat : option bool ] */ ; - PAIR - /* [ pair (big_map nat nat) (option bool) ] */ ; - NIL operation - /* [ list operation : pair (big_map nat nat) (option bool) ] */ ; - PAIR - /* [ pair (list operation) (big_map nat nat) (option bool) ] */ } } -Well typed (Gas remaining: 1039993.494 units remaining) michelson_test_scripts/opcodes/big_map_mem_string.tz -{ parameter string ; - storage (pair (big_map string nat) (option bool)) ; - code { UNPAIR - /* [ string : pair (big_map string nat) (option bool) ] */ ; - DIP { CAR - /* [ big_map string nat ] */ ; - DUP - /* [ big_map string nat : big_map string nat ] */ } - /* [ string : big_map string nat : big_map string nat ] */ ; - MEM - /* [ bool : big_map string nat ] */ ; - SOME - /* [ option bool : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : option bool ] */ ; - PAIR - /* [ pair (big_map string nat) (option bool) ] */ ; - NIL operation - /* [ list operation : pair (big_map string nat) (option bool) ] */ ; - PAIR - /* [ pair (list operation) (big_map string nat) (option bool) ] */ } } -Well typed (Gas remaining: 1039987.387 units remaining) michelson_test_scripts/opcodes/big_map_to_self.tz -{ parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; - storage (big_map string nat) ; - code { UNPAIR - /* [ or (pair (big_map string nat) unit) unit : big_map string nat ] */ ; - DIP { NIL operation /* [ list operation : big_map string nat ] */ } - /* [ or (pair (big_map string nat) unit) unit : list operation - : big_map string nat ] */ ; - IF_LEFT - { DROP /* [ list operation : big_map string nat ] */ } - { DROP - /* [ list operation : big_map string nat ] */ ; - SELF %have_fun - /* [ contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - PUSH mutez - 0 - /* [ mutez : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - DUP 4 - /* [ big_map string nat : mutez : contract (pair (big_map string nat) unit) - : list operation : big_map string nat ] */ ; - PUSH (option nat) - (Some 8) - /* [ option nat : big_map string nat : mutez - : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - PUSH string - "hahaha" - /* [ string : option nat : big_map string nat : mutez - : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - UPDATE - /* [ big_map string nat : mutez : contract (pair (big_map string nat) unit) - : list operation : big_map string nat ] */ ; - UNIT - /* [ unit : big_map string nat : mutez - : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - SWAP - /* [ big_map string nat : unit : mutez - : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - PAIR - /* [ pair (big_map string nat) unit : mutez - : contract (pair (big_map string nat) unit) : list operation - : big_map string nat ] */ ; - TRANSFER_TOKENS - /* [ operation : list operation : big_map string nat ] */ ; - CONS - /* [ list operation : big_map string nat ] */ } ; - PAIR - /* [ pair (list operation) (big_map string nat) ] */ } } -Well typed (Gas remaining: 1039996.436 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz -{ parameter unit ; - storage (option bls12_381_fr) ; - code { DROP - /* [] */ ; - PUSH bls12_381_fr 0x00 - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039996.436 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz -{ parameter unit ; - storage (option bls12_381_fr) ; - code { DROP - /* [] */ ; - PUSH bls12_381_fr 16 - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz -{ parameter bls12_381_fr ; - storage int ; - code { CAR - /* [ bls12_381_fr ] */ ; - INT - /* [ int ] */ ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039993.594 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz -{ parameter bls12_381_fr ; - storage mutez ; - code { CAR - /* [ bls12_381_fr ] */ ; - INT - /* [ int ] */ ; - ISNAT - /* [ option nat ] */ ; - ASSERT_SOME ; - PUSH mutez 1 - /* [ mutez : nat ] */ ; - MUL - /* [ mutez ] */ ; - NIL operation - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz -{ parameter int ; - storage bls12_381_fr ; - code { UNPAIR - /* [ int : bls12_381_fr ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - NIL operation - /* [ list operation : bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) bls12_381_fr ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz -{ parameter nat ; - storage bls12_381_fr ; - code { UNPAIR - /* [ nat : bls12_381_fr ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - NIL operation - /* [ list operation : bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) bls12_381_fr ] */ } } -Well typed (Gas remaining: 1039996.980 units remaining) michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz -{ parameter int ; - storage bls12_381_fr ; - code { UNPAIR - /* [ int : bls12_381_fr ] */ ; - SWAP - /* [ bls12_381_fr : int ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - NIL operation - /* [ list operation : bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) bls12_381_fr ] */ } } -Well typed (Gas remaining: 1039996.980 units remaining) michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz -{ parameter nat ; - storage bls12_381_fr ; - code { UNPAIR - /* [ nat : bls12_381_fr ] */ ; - SWAP - /* [ bls12_381_fr : nat ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - NIL operation - /* [ list operation : bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) bls12_381_fr ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/opcodes/bytes.tz -{ parameter bytes ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039908.105 units remaining) michelson_test_scripts/opcodes/bytes_of_int_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH int 0 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH int 1 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x01 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH int 1193046 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x123456 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x123456 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int 1193046 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0000123456 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int 1193046 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int 0 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0000 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int 0 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH int -128 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x80 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH int -129 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0xff7f - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH int -33024 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0xff7f00 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH int -4294967296 - /* [ int ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0xff00000000 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x80 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int -128 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0xff7f - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int -129 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0xff7f00 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int -33024 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0xffffff7f00 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int -33024 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0xff00000000 - /* [ bytes ] */ ; - INT - /* [ int ] */ ; - PUSH int -4294967296 - /* [ int : int ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039958.808 units remaining) michelson_test_scripts/opcodes/bytes_of_nat_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 0 - /* [ nat ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 1 - /* [ nat ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x01 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 1193046 - /* [ nat ] */ ; - BYTES - /* [ bytes ] */ ; - PUSH bytes 0x123456 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x123456 - /* [ bytes ] */ ; - NAT - /* [ nat ] */ ; - PUSH nat 1193046 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0000123456 - /* [ bytes ] */ ; - NAT - /* [ nat ] */ ; - PUSH nat 1193046 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x - /* [ bytes ] */ ; - NAT - /* [ nat ] */ ; - PUSH nat 0 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0000 - /* [ bytes ] */ ; - NAT - /* [ nat ] */ ; - PUSH nat 0 - /* [ nat : nat ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.277 units remaining) michelson_test_scripts/opcodes/car.tz -{ parameter (pair (nat :l) (nat :r)) ; - storage nat ; - code { CAR - /* [ pair nat nat ] */ ; - CAR - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039997.277 units remaining) michelson_test_scripts/opcodes/cdr.tz -{ parameter (pair (nat :l) (nat :r)) ; - storage nat ; - code { CAR - /* [ pair nat nat ] */ ; - CDR - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039996.980 units remaining) michelson_test_scripts/opcodes/chain_id.tz -{ parameter unit ; - storage unit ; - code { CHAIN_ID - /* [ chain_id : pair unit unit ] */ ; - DROP - /* [ pair unit unit ] */ ; - CAR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/chain_id_store.tz -{ parameter unit ; - storage (option chain_id) ; - code { DROP - /* [] */ ; - CHAIN_ID - /* [ chain_id ] */ ; - SOME - /* [ option chain_id ] */ ; - NIL operation - /* [ list operation : option chain_id ] */ ; - PAIR - /* [ pair (list operation) (option chain_id) ] */ } } -Well typed (Gas remaining: 1039988.984 units remaining) michelson_test_scripts/opcodes/check_signature.tz -{ parameter key ; - storage (pair signature string) ; - code { DUP - /* [ pair key signature string : pair key signature string ] */ ; - DUP - /* [ pair key signature string : pair key signature string - : pair key signature string ] */ ; - DIP { CDR - /* [ pair signature string : pair key signature string ] */ ; - DUP - /* [ pair signature string : pair signature string : pair key signature string ] */ ; - CAR - /* [ signature : pair signature string : pair key signature string ] */ ; - DIP { CDR - /* [ string : pair key signature string ] */ ; - PACK - /* [ bytes : pair key signature string ] */ } - /* [ signature : bytes : pair key signature string ] */ } - /* [ pair key signature string : signature : bytes : pair key signature string ] */ ; - CAR - /* [ key : signature : bytes : pair key signature string ] */ ; - CHECK_SIGNATURE - /* [ bool : pair key signature string ] */ ; - IF { /* [ pair key signature string ] */ } { FAIL } ; - CDR - /* [ pair signature string ] */ ; - NIL operation - /* [ list operation : pair signature string ] */ ; - PAIR - /* [ pair (list operation) signature string ] */ } } -Well typed (Gas remaining: 1039995.014 units remaining) michelson_test_scripts/opcodes/comb.tz -{ parameter unit ; - storage (pair nat nat nat) ; - code { DROP - /* [] */ ; - PUSH nat 3 - /* [ nat ] */ ; - PUSH nat 2 - /* [ nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat ] */ ; - NIL operation - /* [ list operation : nat : nat : nat ] */ ; - PAIR 4 - /* [ pair (list operation) nat nat nat ] */ } } -Well typed (Gas remaining: 1039966.252 units remaining) michelson_test_scripts/opcodes/comb-get.tz -{ parameter (pair nat nat nat unit) ; - storage unit ; - code { CAR - /* [ pair nat nat nat unit ] */ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - CAR - /* [ nat : pair nat nat nat unit ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - GET 1 - /* [ nat : pair nat nat nat unit ] */ ; - PUSH nat 1 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - GET 3 - /* [ nat : pair nat nat nat unit ] */ ; - PUSH nat 4 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - GET 5 - /* [ nat : pair nat nat nat unit ] */ ; - PUSH nat 2 - /* [ nat : nat : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat nat nat unit : pair nat nat nat unit ] */ ; - GET 6 - /* [ unit : pair nat nat nat unit ] */ ; - UNIT - /* [ unit : unit : pair nat nat nat unit ] */ ; - ASSERT_CMPEQ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.270 units remaining) michelson_test_scripts/opcodes/comb-literals.tz -{ parameter unit ; - storage unit ; - code { PUSH (list (pair nat nat nat nat)) - { Pair 0 3 6 9 ; Pair 1 (Pair 4 (Pair 7 10)) ; { 2 ; 5 ; 8 ; 11 } } - /* [ list (pair nat nat nat nat) : pair unit unit ] */ ; - DROP 2 - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.623 units remaining) michelson_test_scripts/opcodes/comb-set.tz -{ parameter unit ; - storage (pair nat nat nat unit) ; - code { CDR - /* [ pair nat nat nat unit ] */ ; - PUSH nat 2 - /* [ nat : pair nat nat nat unit ] */ ; - UPDATE 1 - /* [ pair nat nat nat unit ] */ ; - PUSH nat 12 - /* [ nat : pair nat nat nat unit ] */ ; - UPDATE 3 - /* [ pair nat nat nat unit ] */ ; - PUSH nat 8 - /* [ nat : pair nat nat nat unit ] */ ; - UPDATE 5 - /* [ pair nat nat nat unit ] */ ; - UNIT - /* [ unit : pair nat nat nat unit ] */ ; - UPDATE 6 - /* [ pair nat nat nat unit ] */ ; - NIL operation - /* [ list operation : pair nat nat nat unit ] */ ; - PAIR - /* [ pair (list operation) nat nat nat unit ] */ } } -Well typed (Gas remaining: 1039991.581 units remaining) michelson_test_scripts/opcodes/comb-set-2.tz -{ parameter (pair nat nat nat unit) ; - storage (option (pair int nat string bytes)) ; - code { CAR - /* [ pair nat nat nat unit ] */ ; - PUSH int 2 - /* [ int : pair nat nat nat unit ] */ ; - UPDATE 1 - /* [ pair int nat nat unit ] */ ; - PUSH string "toto" - /* [ string : pair int nat nat unit ] */ ; - UPDATE 5 - /* [ pair int nat string unit ] */ ; - PUSH bytes 0x01 - /* [ bytes : pair int nat string unit ] */ ; - UPDATE 6 - /* [ pair int nat string bytes ] */ ; - SOME - /* [ option (pair int nat string bytes) ] */ ; - NIL operation - /* [ list operation : option (pair int nat string bytes) ] */ ; - PAIR - /* [ pair (list operation) (option (pair int nat string bytes)) ] */ } } -Well typed (Gas remaining: 1039840.163 units remaining) michelson_test_scripts/opcodes/compare.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bool True - /* [ bool ] */ ; - DUP - /* [ bool : bool ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH bool False - /* [ bool ] */ ; - DUP - /* [ bool : bool ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH bool False - /* [ bool ] */ ; - PUSH bool True - /* [ bool : bool ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH bool True - /* [ bool ] */ ; - PUSH bool False - /* [ bool : bool ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH bytes 0xaabbcc - /* [ bytes ] */ ; - DUP - /* [ bytes : bytes ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH bytes 0x - /* [ bytes ] */ ; - PUSH bytes 0x - /* [ bytes : bytes ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH bytes 0x - /* [ bytes ] */ ; - PUSH bytes 0x01 - /* [ bytes : bytes ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH bytes 0x01 - /* [ bytes ] */ ; - PUSH bytes 0x02 - /* [ bytes : bytes ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH bytes 0x02 - /* [ bytes ] */ ; - PUSH bytes 0x01 - /* [ bytes : bytes ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH int 1 - /* [ int ] */ ; - DUP - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH int 10 - /* [ int ] */ ; - PUSH int 5 - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH int -4 - /* [ int ] */ ; - PUSH int 1923 - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH nat 1 - /* [ nat ] */ ; - DUP - /* [ nat : nat ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH nat 10 - /* [ nat ] */ ; - PUSH nat 5 - /* [ nat : nat ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH nat 4 - /* [ nat ] */ ; - PUSH nat 1923 - /* [ nat : nat ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH key_hash "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - /* [ key_hash ] */ ; - DUP - /* [ key_hash : key_hash ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH key_hash "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" - /* [ key_hash ] */ ; - PUSH key_hash "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - /* [ key_hash : key_hash ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH key_hash "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - /* [ key_hash ] */ ; - PUSH key_hash "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" - /* [ key_hash : key_hash ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH mutez 1 - /* [ mutez ] */ ; - DUP - /* [ mutez : mutez ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH mutez 10 - /* [ mutez ] */ ; - PUSH mutez 5 - /* [ mutez : mutez ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH mutez 4 - /* [ mutez ] */ ; - PUSH mutez 1923 - /* [ mutez : mutez ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH string "AABBCC" - /* [ string ] */ ; - DUP - /* [ string : string ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH string "" - /* [ string ] */ ; - PUSH string "" - /* [ string : string ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH string "" - /* [ string ] */ ; - PUSH string "a" - /* [ string : string ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH string "a" - /* [ string ] */ ; - PUSH string "b" - /* [ string : string ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH string "b" - /* [ string ] */ ; - PUSH string "a" - /* [ string : string ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - PUSH timestamp "2019-09-16T08:38:05Z" - /* [ timestamp ] */ ; - DUP - /* [ timestamp : timestamp ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH timestamp "2017-09-16T08:38:04Z" - /* [ timestamp ] */ ; - PUSH timestamp "2019-09-16T08:38:05Z" - /* [ timestamp : timestamp ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_GT ; - PUSH timestamp "2019-09-16T08:38:05Z" - /* [ timestamp ] */ ; - PUSH timestamp "2019-09-16T08:38:04Z" - /* [ timestamp : timestamp ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_LT ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039129.907 units remaining) michelson_test_scripts/opcodes/compare_big_type.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 0 - /* [ nat ] */ ; - DUP - /* [ nat : nat ] */ ; - PAIR - /* [ pair nat nat ] */ ; - DUP - /* [ pair nat nat : pair nat nat ] */ ; - PAIR - /* [ pair (pair nat nat) nat nat ] */ ; - DUP - /* [ pair (pair nat nat) nat nat : pair (pair nat nat) nat nat ] */ ; - PAIR - /* [ pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat ] */ ; - DUP - /* [ pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat - : pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat ] */ ; - PAIR - /* [ pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1038995.158 units remaining) michelson_test_scripts/opcodes/compare_big_type2.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 0 - /* [ nat ] */ ; - DUP - /* [ nat : nat ] */ ; - PAIR - /* [ pair nat nat ] */ ; - DUP - /* [ pair nat nat : pair nat nat ] */ ; - PAIR - /* [ pair (pair nat nat) nat nat ] */ ; - DUP - /* [ pair (pair nat nat) nat nat : pair (pair nat nat) nat nat ] */ ; - PAIR - /* [ pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat ] */ ; - DUP - /* [ pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat - : pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat ] */ ; - PAIR - /* [ pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - PAIR - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DUP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - COMPARE - /* [ int - : pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [ pair (pair (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat) - (pair (pair (pair nat nat) nat nat) (pair nat nat) nat nat) - (pair (pair nat nat) nat nat) - (pair nat nat) - nat - nat ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039977.212 units remaining) michelson_test_scripts/opcodes/comparisons.tz -{ parameter (list int) ; - storage (list (list bool)) ; - code { CAR - /* [ list int ] */ ; - NIL (list bool) - /* [ list (list bool) : list int ] */ ; - DIP { DUP - /* [ list int : list int ] */ ; - MAP { EQ /* [ bool : list int ] */ } - /* [ list bool : list int ] */ } - /* [ list (list bool) : list bool : list int ] */ ; - SWAP - /* [ list bool : list (list bool) : list int ] */ ; - CONS - /* [ list (list bool) : list int ] */ ; - DIP { DUP - /* [ list int : list int ] */ ; - MAP { NEQ /* [ bool : list int ] */ } - /* [ list bool : list int ] */ } - /* [ list (list bool) : list bool : list int ] */ ; - SWAP - /* [ list bool : list (list bool) : list int ] */ ; - CONS - /* [ list (list bool) : list int ] */ ; - DIP { DUP - /* [ list int : list int ] */ ; - MAP { LE /* [ bool : list int ] */ } - /* [ list bool : list int ] */ } - /* [ list (list bool) : list bool : list int ] */ ; - SWAP - /* [ list bool : list (list bool) : list int ] */ ; - CONS - /* [ list (list bool) : list int ] */ ; - DIP { DUP - /* [ list int : list int ] */ ; - MAP { LT /* [ bool : list int ] */ } - /* [ list bool : list int ] */ } - /* [ list (list bool) : list bool : list int ] */ ; - SWAP - /* [ list bool : list (list bool) : list int ] */ ; - CONS - /* [ list (list bool) : list int ] */ ; - DIP { DUP - /* [ list int : list int ] */ ; - MAP { GE /* [ bool : list int ] */ } - /* [ list bool : list int ] */ } - /* [ list (list bool) : list bool : list int ] */ ; - SWAP - /* [ list bool : list (list bool) : list int ] */ ; - CONS - /* [ list (list bool) : list int ] */ ; - DIP { MAP { GT /* [ bool ] */ } /* [ list bool ] */ } - /* [ list (list bool) : list bool ] */ ; - SWAP - /* [ list bool : list (list bool) ] */ ; - CONS - /* [ list (list bool) ] */ ; - NIL operation - /* [ list operation : list (list bool) ] */ ; - PAIR - /* [ pair (list operation) (list (list bool)) ] */ } } -Well typed (Gas remaining: 1039995.899 units remaining) michelson_test_scripts/opcodes/concat_hello.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - MAP { PUSH @hello string "Hello " /* [ string : string ] */ ; CONCAT /* [ string ] */ } - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039995.973 units remaining) michelson_test_scripts/opcodes/concat_hello_bytes.tz -{ parameter (list bytes) ; - storage (list bytes) ; - code { CAR - /* [ list bytes ] */ ; - MAP { PUSH bytes 0xff /* [ bytes : bytes ] */ ; CONCAT /* [ bytes ] */ } - /* [ list bytes ] */ ; - NIL operation - /* [ list operation : list bytes ] */ ; - PAIR - /* [ pair (list operation) (list bytes) ] */ } } -Well typed (Gas remaining: 1039992.537 units remaining) michelson_test_scripts/opcodes/concat_list.tz -{ parameter (list string) ; - storage string ; - code { CAR - /* [ list string ] */ ; - PUSH string "" - /* [ string : list string ] */ ; - SWAP - /* [ list string : string ] */ ; - ITER { SWAP - /* [ string : string ] */ ; - DIP { NIL string - /* [ list string : string ] */ ; - SWAP - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ } - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ ; - CONCAT - /* [ string ] */ } - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039997.240 units remaining) michelson_test_scripts/opcodes/cons.tz -{ parameter int ; - storage (list int) ; - code { UNPAIR - /* [ int : list int ] */ ; - CONS - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039974.767 units remaining) michelson_test_scripts/opcodes/contains_all.tz -{ parameter (pair (list string) (list string)) ; - storage (option bool) ; - code { CAR - /* [ pair (list string) (list string) ] */ ; - DUP - /* [ pair (list string) (list string) : pair (list string) (list string) ] */ ; - CAR - /* [ list string : pair (list string) (list string) ] */ ; - DIP { CDR /* [ list string ] */ } - /* [ list string : list string ] */ ; - EMPTY_SET string - /* [ set string : list string : list string ] */ ; - SWAP - /* [ list string : set string : list string ] */ ; - ITER { PAIR - /* [ pair string (set string) : list string ] */ ; - DUP - /* [ pair string (set string) : pair string (set string) : list string ] */ ; - CAR - /* [ string : pair string (set string) : list string ] */ ; - DIP { CDR /* [ set string : list string ] */ } - /* [ string : set string : list string ] */ ; - PUSH bool True - /* [ bool : string : set string : list string ] */ ; - SWAP - /* [ string : bool : set string : list string ] */ ; - UPDATE - /* [ set string : list string ] */ } - /* [ set string : list string ] */ ; - PUSH bool True - /* [ bool : set string : list string ] */ ; - SWAP - /* [ set string : bool : list string ] */ ; - PAIR - /* [ pair (set string) bool : list string ] */ ; - SWAP - /* [ list string : pair (set string) bool ] */ ; - ITER { PAIR - /* [ pair string (set string) bool ] */ ; - DUP - /* [ pair string (set string) bool : pair string (set string) bool ] */ ; - DUP - /* [ pair string (set string) bool : pair string (set string) bool - : pair string (set string) bool ] */ ; - CAR - /* [ string : pair string (set string) bool : pair string (set string) bool ] */ ; - DIP { CDAR ; - DIP { CDDR } - /* [ set string : bool ] */ ; - DUP - /* [ set string : set string : bool ] */ } - /* [ string : set string : set string : bool ] */ ; - MEM - /* [ bool : set string : bool ] */ ; - DIP { SWAP /* [ bool : set string ] */ } - /* [ bool : bool : set string ] */ ; - AND - /* [ bool : set string ] */ ; - SWAP - /* [ set string : bool ] */ ; - PAIR - /* [ pair (set string) bool ] */ } - /* [ pair (set string) bool ] */ ; - CDR - /* [ bool ] */ ; - SOME - /* [ option bool ] */ ; - NIL operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039994.190 units remaining) michelson_test_scripts/opcodes/contract.tz -{ parameter address ; - storage unit ; - code { CAR - /* [ address ] */ ; - CONTRACT unit - /* [ option (contract unit) ] */ ; - ASSERT_SOME ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.584 units remaining) michelson_test_scripts/opcodes/create_contract.tz -{ parameter unit ; - storage (option address) ; - code { /* [ pair unit unit ] */ - DROP - /* [ list operation : unit ] */ ; - UNIT - /* [ unit ] */ ; - AMOUNT - /* [ pair (list operation) unit ] */ ; - NONE key_hash - /* [ option key_hash : mutez : unit ] */ ; - CREATE_CONTRACT - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - DIP { SOME - /* [ option address ] */ ; - NIL operation - /* [ list operation : option address ] */ } - /* [ operation : list operation : option address ] */ ; - CONS - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039991.584 units remaining) michelson_test_scripts/opcodes/create_contract_rootname.tz -{ parameter unit ; - storage (option address) ; - code { /* [ pair unit unit ] */ - DROP - /* [ list operation : unit ] */ ; - UNIT - /* [ unit ] */ ; - AMOUNT - /* [ pair (list operation) unit ] */ ; - NONE key_hash - /* [ option key_hash : mutez : unit ] */ ; - CREATE_CONTRACT - { parameter (unit %root) ; - storage unit ; - code { CDR ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - DIP { SOME - /* [ option address ] */ ; - NIL operation - /* [ list operation : option address ] */ } - /* [ operation : list operation : option address ] */ ; - CONS - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039991.584 units remaining) michelson_test_scripts/opcodes/create_contract_rootname_alt.tz -{ parameter unit ; - storage (option address) ; - code { /* [ pair unit unit ] */ - DROP - /* [ list operation : unit ] */ ; - UNIT - /* [ unit ] */ ; - AMOUNT - /* [ pair (list operation) unit ] */ ; - NONE key_hash - /* [ option key_hash : mutez : unit ] */ ; - CREATE_CONTRACT - { parameter (unit %root) ; - storage unit ; - code { CDR ; NIL operation ; PAIR } } - /* [ operation : address ] */ ; - DIP { SOME - /* [ option address ] */ ; - NIL operation - /* [ list operation : option address ] */ } - /* [ operation : list operation : option address ] */ ; - CONS - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039990.516 units remaining) michelson_test_scripts/opcodes/create_contract_with_view.tz -{ parameter unit ; - storage (option address) ; - code { /* [ pair unit unit ] */ - DROP - /* [ list operation : unit ] */ ; - UNIT - /* [ unit ] */ ; - AMOUNT - /* [ pair (list operation) unit ] */ ; - NONE key_hash - /* [ option key_hash : mutez : unit ] */ ; - CREATE_CONTRACT - { parameter unit /* [ nat ] */ ; - storage unit ; - code { CDR ; NIL operation ; PAIR } ; - view "const" nat nat { CAR } } - /* [ operation : address ] */ ; - DIP { SOME - /* [ option address ] */ ; - NIL operation - /* [ list operation : option address ] */ } - /* [ operation : list operation : option address ] */ ; - CONS - /* [ list operation : option address ] */ ; - PAIR - /* [ pair (list operation) (option address) ] */ } } -Well typed (Gas remaining: 1039995.013 units remaining) michelson_test_scripts/opcodes/diff_timestamps.tz -{ parameter (pair timestamp timestamp) ; - storage int ; - code { CAR - /* [ pair timestamp timestamp ] */ ; - DUP - /* [ pair timestamp timestamp : pair timestamp timestamp ] */ ; - CAR - /* [ timestamp : pair timestamp timestamp ] */ ; - DIP { CDR /* [ timestamp ] */ } - /* [ timestamp : timestamp ] */ ; - SUB - /* [ int ] */ ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039909.247 units remaining) michelson_test_scripts/opcodes/dig_eq.tz -{ parameter - (pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat) ; - storage unit ; - code { CAR - /* [ pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DUP - /* [ pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - UNPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAIR ; - DIG 0 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 1 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 2 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 3 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 4 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 5 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 6 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 7 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 8 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 9 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 10 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 11 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 12 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 13 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 14 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 15 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 16 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 0 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 1 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 2 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 3 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 4 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 5 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 6 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 7 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 8 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 9 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 10 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 11 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 12 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 13 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 14 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 15 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - DIG 16 - /* [ nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat : nat - : nat : nat : nat : nat - : pair nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat nat ] */ ; - PAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAIR ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039992.220 units remaining) michelson_test_scripts/opcodes/dign.tz -{ parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; - storage nat ; - code { CAR - /* [ pair (pair (pair (pair nat nat) nat) nat) nat ] */ ; - UNPAIR - /* [ pair (pair (pair nat nat) nat) nat : nat ] */ ; - UNPAIR - /* [ pair (pair nat nat) nat : nat : nat ] */ ; - UNPAIR - /* [ pair nat nat : nat : nat : nat ] */ ; - UNPAIR - /* [ nat : nat : nat : nat : nat ] */ ; - DIG 4 - /* [ nat : nat : nat : nat : nat ] */ ; - DIP { DROP /* [ nat : nat : nat ] */ ; DROP /* [ nat : nat ] */ ; DROP /* [ nat ] */ ; DROP /* [] */ } - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039994.918 units remaining) michelson_test_scripts/opcodes/dip.tz -{ parameter (pair nat nat) ; - storage (pair nat nat) ; - code { CAR - /* [ pair nat nat ] */ ; - UNPAIR - /* [ nat : nat ] */ ; - DUP - /* [ nat : nat : nat ] */ ; - DIP { ADD /* [ nat ] */ } - /* [ nat : nat ] */ ; - PAIR - /* [ pair nat nat ] */ ; - NIL operation - /* [ list operation : pair nat nat ] */ ; - PAIR - /* [ pair (list operation) nat nat ] */ } } -Well typed (Gas remaining: 1039991.330 units remaining) michelson_test_scripts/opcodes/dipn.tz -{ parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; - storage nat ; - code { CAR - /* [ pair (pair (pair (pair nat nat) nat) nat) nat ] */ ; - UNPAIR - /* [ pair (pair (pair nat nat) nat) nat : nat ] */ ; - UNPAIR - /* [ pair (pair nat nat) nat : nat : nat ] */ ; - UNPAIR - /* [ pair nat nat : nat : nat : nat ] */ ; - UNPAIR - /* [ nat : nat : nat : nat : nat ] */ ; - DIP 5 { PUSH nat 6 /* [ nat ] */ } - /* [ nat : nat : nat : nat : nat : nat ] */ ; - DROP - /* [ nat : nat : nat : nat : nat ] */ ; - DROP - /* [ nat : nat : nat : nat ] */ ; - DROP - /* [ nat : nat : nat ] */ ; - DROP - /* [ nat : nat ] */ ; - DROP - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039994.587 units remaining) michelson_test_scripts/opcodes/dropn.tz -{ parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; - storage nat ; - code { CAR - /* [ pair (pair (pair (pair nat nat) nat) nat) nat ] */ ; - UNPAIR - /* [ pair (pair (pair nat nat) nat) nat : nat ] */ ; - UNPAIR - /* [ pair (pair nat nat) nat : nat : nat ] */ ; - UNPAIR - /* [ pair nat nat : nat : nat : nat ] */ ; - UNPAIR - /* [ nat : nat : nat : nat : nat ] */ ; - DROP 4 - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039992.716 units remaining) michelson_test_scripts/opcodes/dugn.tz -{ parameter (pair (pair (pair (pair nat nat) nat) nat) nat) ; - storage nat ; - code { CAR - /* [ pair (pair (pair (pair nat nat) nat) nat) nat ] */ ; - UNPAIR - /* [ pair (pair (pair nat nat) nat) nat : nat ] */ ; - UNPAIR - /* [ pair (pair nat nat) nat : nat : nat ] */ ; - UNPAIR - /* [ pair nat nat : nat : nat : nat ] */ ; - UNPAIR - /* [ nat : nat : nat : nat : nat ] */ ; - DUG 4 - /* [ nat : nat : nat : nat : nat ] */ ; - DROP - /* [ nat : nat : nat : nat ] */ ; - DROP - /* [ nat : nat : nat ] */ ; - DROP - /* [ nat : nat ] */ ; - DROP - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039968.032 units remaining) michelson_test_scripts/opcodes/dup-n.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 5 - /* [ nat ] */ ; - PUSH nat 4 - /* [ nat : nat ] */ ; - PUSH nat 3 - /* [ nat : nat : nat ] */ ; - PUSH nat 2 - /* [ nat : nat : nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat : nat : nat ] */ ; - DUP 1 - /* [ nat : nat : nat : nat : nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat : nat : nat : nat : nat ] */ ; - ASSERT_CMPEQ ; - DUP 2 - /* [ nat : nat : nat : nat : nat : nat ] */ ; - PUSH nat 2 - /* [ nat : nat : nat : nat : nat : nat : nat ] */ ; - ASSERT_CMPEQ ; - DUP 3 - /* [ nat : nat : nat : nat : nat : nat ] */ ; - PUSH nat 3 - /* [ nat : nat : nat : nat : nat : nat : nat ] */ ; - ASSERT_CMPEQ ; - DUP 4 - /* [ nat : nat : nat : nat : nat : nat ] */ ; - PUSH nat 4 - /* [ nat : nat : nat : nat : nat : nat : nat ] */ ; - ASSERT_CMPEQ ; - DUP 5 - /* [ nat : nat : nat : nat : nat : nat ] */ ; - PUSH nat 5 - /* [ nat : nat : nat : nat : nat : nat : nat ] */ ; - ASSERT_CMPEQ ; - DROP 5 - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039981.718 units remaining) michelson_test_scripts/opcodes/ediv.tz -{ parameter (pair int int) ; - storage - (pair (option (pair int nat)) - (option (pair int nat)) - (option (pair int nat)) - (option (pair nat nat))) ; - code { CAR - /* [ pair int int ] */ ; - DUP - /* [ pair int int : pair int int ] */ ; - UNPAIR - /* [ int : int : pair int int ] */ ; - ABS - /* [ nat : int : pair int int ] */ ; - DIP { ABS /* [ nat : pair int int ] */ } - /* [ nat : nat : pair int int ] */ ; - EDIV - /* [ option (pair nat nat) : pair int int ] */ ; - SWAP - /* [ pair int int : option (pair nat nat) ] */ ; - DUP - /* [ pair int int : pair int int : option (pair nat nat) ] */ ; - UNPAIR - /* [ int : int : pair int int : option (pair nat nat) ] */ ; - ABS - /* [ nat : int : pair int int : option (pair nat nat) ] */ ; - EDIV - /* [ option (pair int nat) : pair int int : option (pair nat nat) ] */ ; - SWAP - /* [ pair int int : option (pair int nat) : option (pair nat nat) ] */ ; - DUP - /* [ pair int int : pair int int : option (pair int nat) - : option (pair nat nat) ] */ ; - UNPAIR - /* [ int : int : pair int int : option (pair int nat) : option (pair nat nat) ] */ ; - DIP { ABS - /* [ nat : pair int int : option (pair int nat) : option (pair nat nat) ] */ } - /* [ int : nat : pair int int : option (pair int nat) : option (pair nat nat) ] */ ; - EDIV - /* [ option (pair int nat) : pair int int : option (pair int nat) - : option (pair nat nat) ] */ ; - SWAP - /* [ pair int int : option (pair int nat) : option (pair int nat) - : option (pair nat nat) ] */ ; - UNPAIR - /* [ int : int : option (pair int nat) : option (pair int nat) - : option (pair nat nat) ] */ ; - EDIV - /* [ option (pair int nat) : option (pair int nat) : option (pair int nat) - : option (pair nat nat) ] */ ; - PAPAPAIR ; - NIL operation - /* [ list operation - : pair (option (pair int nat)) - (option (pair int nat)) - (option (pair int nat)) - (option (pair nat nat)) ] */ ; - PAIR - /* [ pair (list operation) - (option (pair int nat)) - (option (pair int nat)) - (option (pair int nat)) - (option (pair nat nat)) ] */ } } -Well typed (Gas remaining: 1039990.621 units remaining) michelson_test_scripts/opcodes/ediv_mutez.tz -{ parameter (pair mutez (or mutez nat)) ; - storage (or (option (pair nat mutez)) (option (pair mutez mutez))) ; - code { CAR - /* [ pair mutez (or mutez nat) ] */ ; - UNPAIR - /* [ mutez : or mutez nat ] */ ; - SWAP - /* [ or mutez nat : mutez ] */ ; - IF_LEFT - { SWAP - /* [ mutez : mutez ] */ ; - EDIV - /* [ option (pair nat mutez) ] */ ; - LEFT (option (pair mutez mutez)) - /* [ or (option (pair nat mutez)) (option (pair mutez mutez)) ] */ } - { SWAP - /* [ mutez : nat ] */ ; - EDIV - /* [ option (pair mutez mutez) ] */ ; - RIGHT - (option (pair nat mutez)) - /* [ or (option (pair nat mutez)) (option (pair mutez mutez)) ] */ } ; - NIL operation - /* [ list operation : or (option (pair nat mutez)) (option (pair mutez mutez)) ] */ ; - PAIR - /* [ pair (list operation) (or (option (pair nat mutez)) (option (pair mutez mutez))) ] */ } } -Well typed (Gas remaining: 1039991.050 units remaining) michelson_test_scripts/opcodes/emit.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - PUSH nat 10 - /* [ nat : unit ] */ ; - LEFT string - /* [ or nat string : unit ] */ ; - EMIT %event - /* [ operation : unit ] */ ; - PUSH string "lorem ipsum" - /* [ string : operation : unit ] */ ; - RIGHT nat - /* [ or nat string : operation : unit ] */ ; - EMIT %event (or (nat %number) (string %words)) - /* [ operation : operation : unit ] */ ; - NIL operation - /* [ list operation : operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : operation : unit ] */ ; - CONS - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039994.366 units remaining) michelson_test_scripts/opcodes/empty_map.tz -{ storage (map string string) ; - parameter unit ; - code { DROP - /* [] */ ; - EMPTY_MAP string string - /* [ map string string ] */ ; - PUSH string "world" - /* [ string : map string string ] */ ; - SOME - /* [ option string : map string string ] */ ; - PUSH string "hello" - /* [ string : option string : map string string ] */ ; - UPDATE - /* [ map string string ] */ ; - NIL operation - /* [ list operation : map string string ] */ ; - PAIR - /* [ pair (list operation) (map string string) ] */ } } -Well typed (Gas remaining: 1039992.377 units remaining) michelson_test_scripts/opcodes/exec_concat.tz -{ parameter string ; - storage string ; - code { CAR - /* [ string ] */ ; - LAMBDA - string - string - { PUSH string "_abc" - /* [ string : string ] */ ; - NIL string - /* [ list string : string : string ] */ ; - SWAP - /* [ string : list string : string ] */ ; - CONS - /* [ list string : string ] */ ; - SWAP - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ ; - CONCAT - /* [ string ] */ } - /* [ lambda string string : string ] */ ; - SWAP - /* [ string : lambda string string ] */ ; - EXEC - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039989.390 units remaining) michelson_test_scripts/opcodes/fact.tz -{ parameter nat ; - storage nat ; - code { CAR - /* [ nat ] */ ; - LAMBDA_REC - nat - nat - { PUSH int -1 - /* [ int : nat : lambda nat nat ] */ ; - ADD - /* [ int : lambda nat nat ] */ ; - ISNAT - /* [ option nat : lambda nat nat ] */ ; - IF_NONE - { DROP /* [] */ ; PUSH nat 1 /* [ nat ] */ } - { DUP - /* [ nat : nat : lambda nat nat ] */ ; - DIP { EXEC /* [ nat ] */ } - /* [ nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat ] */ ; - ADD - /* [ nat : nat ] */ ; - MUL - /* [ nat ] */ } } - /* [ lambda nat nat : nat ] */ ; - SWAP - /* [ nat : lambda nat nat ] */ ; - EXEC - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039995.098 units remaining) michelson_test_scripts/opcodes/first.tz -{ parameter (list nat) ; - storage nat ; - code { CAR - /* [ list nat ] */ ; - IF_CONS { DIP { DROP /* [] */ } /* [ nat ] */ } { FAIL } ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039994.790 units remaining) michelson_test_scripts/opcodes/get_and_update_big_map.tz -{ parameter string ; - storage (pair (option nat) (big_map string nat)) ; - code { UNPAPAIR ; - GET_AND_UPDATE - /* [ option nat : big_map string nat ] */ ; - PAIR - /* [ pair (option nat) (big_map string nat) ] */ ; - NIL operation - /* [ list operation : pair (option nat) (big_map string nat) ] */ ; - PAIR - /* [ pair (list operation) (option nat) (big_map string nat) ] */ } } -Well typed (Gas remaining: 1039994.850 units remaining) michelson_test_scripts/opcodes/get_and_update_map.tz -{ parameter string ; - storage (pair (option nat) (map string nat)) ; - code { UNPAPAIR ; - GET_AND_UPDATE - /* [ option nat : map string nat ] */ ; - PAIR - /* [ pair (option nat) (map string nat) ] */ ; - NIL operation - /* [ list operation : pair (option nat) (map string nat) ] */ ; - PAIR - /* [ pair (list operation) (option nat) (map string nat) ] */ } } -Well typed (Gas remaining: 1039992.079 units remaining) michelson_test_scripts/opcodes/get_big_map_value.tz -{ parameter string ; - storage (pair (big_map string string) (option string)) ; - code { DUP - /* [ pair string (big_map string string) (option string) - : pair string (big_map string string) (option string) ] */ ; - CAR - /* [ string : pair string (big_map string string) (option string) ] */ ; - DIP { CDAR ; DUP /* [ big_map string string : big_map string string ] */ } - /* [ string : big_map string string : big_map string string ] */ ; - GET - /* [ option string : big_map string string ] */ ; - SWAP - /* [ big_map string string : option string ] */ ; - PAIR - /* [ pair (big_map string string) (option string) ] */ ; - NIL operation - /* [ list operation : pair (big_map string string) (option string) ] */ ; - PAIR - /* [ pair (list operation) (big_map string string) (option string) ] */ } } -Well typed (Gas remaining: 1039992.607 units remaining) michelson_test_scripts/opcodes/get_map_value.tz -{ parameter string ; - storage (pair (option string) (map string string)) ; - code { DUP - /* [ pair string (option string) (map string string) - : pair string (option string) (map string string) ] */ ; - CAR - /* [ string : pair string (option string) (map string string) ] */ ; - DIP { CDDR ; DUP /* [ map string string : map string string ] */ } - /* [ string : map string string : map string string ] */ ; - GET - /* [ option string : map string string ] */ ; - PAIR - /* [ pair (option string) (map string string) ] */ ; - NIL operation - /* [ list operation : pair (option string) (map string string) ] */ ; - PAIR - /* [ pair (list operation) (option string) (map string string) ] */ } } -Well typed (Gas remaining: 1039996.569 units remaining) michelson_test_scripts/opcodes/hash_consistency_checker.tz -{ parameter (pair mutez (pair timestamp int)) ; - storage bytes ; - code { CAR - /* [ pair mutez timestamp int ] */ ; - PACK - /* [ bytes ] */ ; - BLAKE2B - /* [ bytes ] */ ; - NIL operation - /* [ list operation : bytes ] */ ; - PAIR - /* [ pair (list operation) bytes ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/hash_key.tz -{ parameter key ; - storage (option key_hash) ; - code { CAR - /* [ key ] */ ; - HASH_KEY - /* [ key_hash ] */ ; - SOME - /* [ option key_hash ] */ ; - NIL operation - /* [ list operation : option key_hash ] */ ; - PAIR - /* [ pair (list operation) (option key_hash) ] */ } } -Well typed (Gas remaining: 1039996.980 units remaining) michelson_test_scripts/opcodes/hash_string.tz -{ parameter string ; - storage bytes ; - code { CAR - /* [ string ] */ ; - PACK - /* [ bytes ] */ ; - BLAKE2B - /* [ bytes ] */ ; - NIL operation - /* [ list operation : bytes ] */ ; - PAIR - /* [ pair (list operation) bytes ] */ } } -Well typed (Gas remaining: 1039995.290 units remaining) michelson_test_scripts/opcodes/if.tz -{ parameter bool ; - storage (option bool) ; - code { CAR - /* [ bool ] */ ; - IF { PUSH bool True /* [ bool ] */ } { PUSH bool False /* [ bool ] */ } ; - SOME - /* [ option bool ] */ ; - NIL operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039996.019 units remaining) michelson_test_scripts/opcodes/if_some.tz -{ parameter (option string) ; - storage string ; - code { CAR - /* [ option string ] */ ; - IF_SOME { /* [ string ] */ } { PUSH string "" /* [ string ] */ } ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/int.tz -{ parameter nat ; - storage (option int) ; - code { CAR - /* [ nat ] */ ; - INT - /* [ int ] */ ; - SOME - /* [ option int ] */ ; - NIL operation - /* [ list operation : option int ] */ ; - PAIR - /* [ pair (list operation) (option int) ] */ } } -Well typed (Gas remaining: 1039996.874 units remaining) michelson_test_scripts/opcodes/iter_fail.tz -{ parameter (set nat) ; - storage unit ; - code { UNPAIR - /* [ set nat : unit ] */ ; - ITER { FAILWITH /* [] */ } - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/keccak.tz -{ storage (option bytes) ; - parameter bytes ; - code { CAR - /* [ bytes ] */ ; - KECCAK - /* [ bytes ] */ ; - SOME - /* [ option bytes ] */ ; - NIL operation - /* [ list operation : option bytes ] */ ; - PAIR - /* [ pair (list operation) (option bytes) ] */ } } -Well typed (Gas remaining: 1039995.570 units remaining) michelson_test_scripts/opcodes/left_right.tz -{ parameter (or bool string) ; - storage (or string bool) ; - code { CAR - /* [ or bool string ] */ ; - IF_LEFT - { RIGHT string /* [ or string bool ] */ } - { LEFT bool /* [ or string bool ] */ } ; - NIL operation - /* [ list operation : or string bool ] */ ; - PAIR - /* [ pair (list operation) (or string bool) ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/level.tz -{ parameter unit ; - storage nat ; - code { DROP - /* [] */ ; - LEVEL - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039996.374 units remaining) michelson_test_scripts/opcodes/list_concat.tz -{ parameter (list string) ; - storage string ; - code { UNPAIR - /* [ list string : string ] */ ; - SWAP - /* [ string : list string ] */ ; - CONS - /* [ list string ] */ ; - CONCAT - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039996.374 units remaining) michelson_test_scripts/opcodes/list_concat_bytes.tz -{ parameter (list bytes) ; - storage bytes ; - code { UNPAIR - /* [ list bytes : bytes ] */ ; - SWAP - /* [ bytes : list bytes ] */ ; - CONS - /* [ list bytes ] */ ; - CONCAT - /* [ bytes ] */ ; - NIL operation - /* [ list operation : bytes ] */ ; - PAIR - /* [ pair (list operation) bytes ] */ } } -Well typed (Gas remaining: 1039997.680 units remaining) michelson_test_scripts/opcodes/list_id.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039996.974 units remaining) michelson_test_scripts/opcodes/list_id_map.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - MAP { /* [ string ] */ } - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039995.593 units remaining) michelson_test_scripts/opcodes/list_iter.tz -{ parameter (list int) ; - storage int ; - code { CAR - /* [ list int ] */ ; - PUSH int 1 - /* [ int : list int ] */ ; - SWAP - /* [ list int : int ] */ ; - ITER { MUL /* [ int ] */ } - /* [ int ] */ ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039991.624 units remaining) michelson_test_scripts/opcodes/list_map_block.tz -{ parameter (list int) ; - storage (list int) ; - code { CAR - /* [ list int ] */ ; - PUSH int 0 - /* [ int : list int ] */ ; - SWAP - /* [ list int : int ] */ ; - MAP { DIP { DUP /* [ int : int ] */ } - /* [ int : int : int ] */ ; - ADD - /* [ int : int ] */ ; - DIP { PUSH int 1 /* [ int : int ] */ ; ADD /* [ int ] */ } - /* [ int : int ] */ } - /* [ list int : int ] */ ; - NIL operation - /* [ list operation : list int : int ] */ ; - PAIR - /* [ pair (list operation) (list int) : int ] */ ; - DIP { DROP /* [] */ } - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039997.360 units remaining) michelson_test_scripts/opcodes/list_size.tz -{ parameter (list int) ; - storage nat ; - code { CAR - /* [ list int ] */ ; - SIZE - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039996.957 units remaining) michelson_test_scripts/opcodes/loop_failwith.tz -{ parameter bool ; - storage unit ; - code { UNPAIR - /* [ bool : unit ] */ ; - LOOP { FAILWITH /* [] */ } - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039987.396 units remaining) michelson_test_scripts/opcodes/loop_left.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - NIL string - /* [ list string : list string ] */ ; - SWAP - /* [ list string : list string ] */ ; - PAIR - /* [ pair (list string) (list string) ] */ ; - LEFT (list string) - /* [ or (pair (list string) (list string)) (list string) ] */ ; - LOOP_LEFT - { DUP - /* [ pair (list string) (list string) : pair (list string) (list string) ] */ ; - CAR - /* [ list string : pair (list string) (list string) ] */ ; - DIP { CDR /* [ list string ] */ } - /* [ list string : list string ] */ ; - IF_CONS - { SWAP - /* [ list string : string : list string ] */ ; - DIP { CONS /* [ list string ] */ } - /* [ list string : list string ] */ ; - PAIR - /* [ pair (list string) (list string) ] */ ; - LEFT (list string) - /* [ or (pair (list string) (list string)) (list string) ] */ } - { RIGHT - (pair (list string) (list string)) - /* [ or (pair (list string) (list string)) (list string) ] */ } } - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039996.716 units remaining) michelson_test_scripts/opcodes/loop_left_failwith.tz -{ parameter (or string nat) ; - storage nat ; - code { CAR - /* [ or string nat ] */ ; - LOOP_LEFT { FAILWITH /* [] */ } - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039972.796 units remaining) michelson_test_scripts/opcodes/lsl_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 0 - /* [ nat ] */ ; - PUSH bytes 0x06 - /* [ bytes : nat ] */ ; - LSL - /* [ bytes ] */ ; - PUSH bytes 0x06 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 1 - /* [ nat ] */ ; - PUSH bytes 0x06 - /* [ bytes : nat ] */ ; - LSL - /* [ bytes ] */ ; - PUSH bytes 0x000c - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 8 - /* [ nat ] */ ; - PUSH bytes 0x06 - /* [ bytes : nat ] */ ; - LSL - /* [ bytes ] */ ; - PUSH bytes 0x0600 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 1 - /* [ nat ] */ ; - PUSH bytes 0x0006 - /* [ bytes : nat ] */ ; - LSL - /* [ bytes ] */ ; - PUSH bytes 0x00000c - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039959.946 units remaining) michelson_test_scripts/opcodes/lsr_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH nat 1 - /* [ nat ] */ ; - PUSH bytes 0x06 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x03 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 8 - /* [ nat ] */ ; - PUSH bytes 0x06 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 1 - /* [ nat ] */ ; - PUSH bytes 0x0006 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x0003 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 8 - /* [ nat ] */ ; - PUSH bytes 0x0006 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x00 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 0 - /* [ nat ] */ ; - PUSH bytes 0x001234 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x001234 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH nat 30 - /* [ nat ] */ ; - PUSH bytes 0x001234 - /* [ bytes : nat ] */ ; - LSR - /* [ bytes ] */ ; - PUSH bytes 0x - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039991.063 units remaining) michelson_test_scripts/opcodes/map_car.tz -{ parameter bool ; - storage (pair (bool %b) (nat %n)) ; - code { DUP - /* [ pair bool bool nat : pair bool bool nat ] */ ; - CAR - /* [ bool : pair bool bool nat ] */ ; - DIP { CDR /* [ pair bool nat ] */ } - /* [ bool : pair bool nat ] */ ; - SWAP - /* [ pair bool nat : bool ] */ ; - MAP_CAR @new_storage %b { AND /* [ bool ] */ } ; - NIL operation - /* [ list operation : pair bool nat ] */ ; - PAIR - /* [ pair (list operation) bool nat ] */ } } -Well typed (Gas remaining: 1039997.454 units remaining) michelson_test_scripts/opcodes/map_id.tz -{ parameter (map nat nat) ; - storage (map nat nat) ; - code { CAR - /* [ map nat nat ] */ ; - NIL operation - /* [ list operation : map nat nat ] */ ; - PAIR - /* [ pair (list operation) (map nat nat) ] */ } } -Well typed (Gas remaining: 1039986.949 units remaining) michelson_test_scripts/opcodes/map_iter.tz -{ parameter (map (int :k) (int :e)) ; - storage (pair (int :k) (int :e)) ; - code { CAR - /* [ map int int ] */ ; - PUSH @acc_e (int :e) 0 - /* [ int : map int int ] */ ; - PUSH @acc_k (int :k) 0 - /* [ int : int : map int int ] */ ; - PAIR % %r - /* [ pair int int : map int int ] */ ; - SWAP - /* [ map int int : pair int int ] */ ; - ITER { DIP { DUP - /* [ pair int int : pair int int ] */ ; - CAR - /* [ int : pair int int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ int : int ] */ } - /* [ pair int int : int : int ] */ ; - DUP - /* [ pair int int : pair int int : int : int ] */ ; - DIP { CAR /* [ int : int : int ] */ ; ADD /* [ int : int ] */ } - /* [ pair int int : int : int ] */ ; - SWAP - /* [ int : pair int int : int ] */ ; - DIP { CDR /* [ int : int ] */ ; ADD /* [ int ] */ } - /* [ int : int ] */ ; - PAIR % %r - /* [ pair int int ] */ } - /* [ pair int int ] */ ; - NIL operation - /* [ list operation : pair int int ] */ ; - PAIR - /* [ pair (list operation) int int ] */ } } -Well typed (Gas remaining: 1039993.574 units remaining) michelson_test_scripts/opcodes/map_map.tz -{ parameter nat ; - storage (map string nat) ; - code { UNPAIR - /* [ nat : map string nat ] */ ; - SWAP - /* [ map string nat : nat ] */ ; - MAP { CDR - /* [ nat : nat ] */ ; - DIP { DUP /* [ nat : nat ] */ } - /* [ nat : nat : nat ] */ ; - ADD - /* [ nat : nat ] */ } - /* [ map string nat : nat ] */ ; - DIP { DROP /* [] */ } - /* [ map string nat ] */ ; - NIL operation - /* [ list operation : map string nat ] */ ; - PAIR - /* [ pair (list operation) (map string nat) ] */ } } -Well typed (Gas remaining: 1039988.534 units remaining) michelson_test_scripts/opcodes/map_map_sideeffect.tz -{ parameter nat ; - storage (pair (map string nat) nat) ; - code { UNPAIR - /* [ nat : pair (map string nat) nat ] */ ; - SWAP - /* [ pair (map string nat) nat : nat ] */ ; - CAR - /* [ map string nat : nat ] */ ; - DIP 2 { PUSH @sum nat 0 /* [ nat ] */ } - /* [ map string nat : nat : nat ] */ ; - MAP { CDR - /* [ nat : nat : nat ] */ ; - DIP { DUP /* [ nat : nat : nat ] */ } - /* [ nat : nat : nat : nat ] */ ; - ADD - /* [ nat : nat : nat ] */ ; - DUP - /* [ nat : nat : nat : nat ] */ ; - DUG 2 - /* [ nat : nat : nat : nat ] */ ; - DIP 2 { ADD @sum /* [ nat ] */ } - /* [ nat : nat : nat ] */ } - /* [ map string nat : nat : nat ] */ ; - DIP { DROP /* [ nat ] */ } - /* [ map string nat : nat ] */ ; - PAIR - /* [ pair (map string nat) nat ] */ ; - NIL operation - /* [ list operation : pair (map string nat) nat ] */ ; - PAIR - /* [ pair (list operation) (map string nat) nat ] */ } } -Well typed (Gas remaining: 1039993.554 units remaining) michelson_test_scripts/opcodes/map_mem_nat.tz -{ parameter nat ; - storage (pair (map nat nat) (option bool)) ; - code { UNPAIR - /* [ nat : pair (map nat nat) (option bool) ] */ ; - DIP { CAR /* [ map nat nat ] */ ; DUP /* [ map nat nat : map nat nat ] */ } - /* [ nat : map nat nat : map nat nat ] */ ; - MEM - /* [ bool : map nat nat ] */ ; - SOME - /* [ option bool : map nat nat ] */ ; - SWAP - /* [ map nat nat : option bool ] */ ; - PAIR - /* [ pair (map nat nat) (option bool) ] */ ; - NIL operation - /* [ list operation : pair (map nat nat) (option bool) ] */ ; - PAIR - /* [ pair (list operation) (map nat nat) (option bool) ] */ } } -Well typed (Gas remaining: 1039993.554 units remaining) michelson_test_scripts/opcodes/map_mem_string.tz -{ parameter string ; - storage (pair (map string nat) (option bool)) ; - code { UNPAIR - /* [ string : pair (map string nat) (option bool) ] */ ; - DIP { CAR /* [ map string nat ] */ ; DUP /* [ map string nat : map string nat ] */ } - /* [ string : map string nat : map string nat ] */ ; - MEM - /* [ bool : map string nat ] */ ; - SOME - /* [ option bool : map string nat ] */ ; - SWAP - /* [ map string nat : option bool ] */ ; - PAIR - /* [ pair (map string nat) (option bool) ] */ ; - NIL operation - /* [ list operation : pair (map string nat) (option bool) ] */ ; - PAIR - /* [ pair (list operation) (map string nat) (option bool) ] */ } } -Well typed (Gas remaining: 1039997.277 units remaining) michelson_test_scripts/opcodes/map_size.tz -{ parameter (map string nat) ; - storage nat ; - code { CAR - /* [ map string nat ] */ ; - SIZE - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039992.173 units remaining) michelson_test_scripts/opcodes/merge_comparable_pairs.tz -{ parameter (set (pair (nat %n) (pair %p (string %s) (int %i)))) ; - storage nat ; - code { UNPAIR - /* [ set (pair nat string int) : nat ] */ ; - SWAP - /* [ nat : set (pair nat string int) ] */ ; - PUSH nat 3 - /* [ nat : nat : set (pair nat string int) ] */ ; - COMPARE - /* [ int : set (pair nat string int) ] */ ; - GT - /* [ bool : set (pair nat string int) ] */ ; - IF { /* [ set (pair nat string int) ] */ } - { DROP - /* [] */ ; - EMPTY_SET (pair nat (pair string int)) - /* [ set (pair nat string int) ] */ } ; - SIZE - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039961.621 units remaining) michelson_test_scripts/opcodes/mul.tz -{ parameter unit ; - storage unit ; - code { CAR - /* [ unit ] */ ; - DROP - /* [] */ ; - PUSH nat 7987 - /* [ nat ] */ ; - PUSH mutez 10 - /* [ mutez : nat ] */ ; - MUL - /* [ mutez ] */ ; - PUSH mutez 79870 - /* [ mutez : mutez ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH mutez 10 - /* [ mutez ] */ ; - PUSH nat 7987 - /* [ nat : mutez ] */ ; - MUL - /* [ mutez ] */ ; - PUSH mutez 79870 - /* [ mutez : mutez ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH int 10 - /* [ int ] */ ; - PUSH int -7987 - /* [ int : int ] */ ; - MUL - /* [ int ] */ ; - PUSH int -79870 - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH nat 10 - /* [ nat ] */ ; - PUSH int -7987 - /* [ int : nat ] */ ; - MUL - /* [ int ] */ ; - PUSH int -79870 - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH int -10 - /* [ int ] */ ; - PUSH nat 7987 - /* [ nat : int ] */ ; - MUL - /* [ int ] */ ; - PUSH int -79870 - /* [ int : int ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - PUSH nat 10 - /* [ nat ] */ ; - PUSH nat 7987 - /* [ nat : nat ] */ ; - MUL - /* [ nat ] */ ; - PUSH nat 79870 - /* [ nat : nat ] */ ; - COMPARE - /* [ int ] */ ; - ASSERT_EQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/mul_bls12_381_fr.tz -{ parameter (pair bls12_381_fr bls12_381_fr) ; - storage (option bls12_381_fr) ; - code { CAR - /* [ pair bls12_381_fr bls12_381_fr ] */ ; - UNPAIR - /* [ bls12_381_fr : bls12_381_fr ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/mul_bls12_381_g1.tz -{ parameter (pair bls12_381_g1 bls12_381_fr) ; - storage (option bls12_381_g1) ; - code { CAR - /* [ pair bls12_381_g1 bls12_381_fr ] */ ; - UNPAIR - /* [ bls12_381_g1 : bls12_381_fr ] */ ; - MUL - /* [ bls12_381_g1 ] */ ; - SOME - /* [ option bls12_381_g1 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g1 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g1) ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/mul_bls12_381_g2.tz -{ parameter (pair bls12_381_g2 bls12_381_fr) ; - storage (option bls12_381_g2) ; - code { CAR - /* [ pair bls12_381_g2 bls12_381_fr ] */ ; - UNPAIR - /* [ bls12_381_g2 : bls12_381_fr ] */ ; - MUL - /* [ bls12_381_g2 ] */ ; - SOME - /* [ option bls12_381_g2 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g2 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g2) ] */ } } -Well typed (Gas remaining: 1039992.344 units remaining) michelson_test_scripts/opcodes/mul_overflow.tz -{ parameter (or unit unit) ; - storage unit ; - code { CAR - /* [ or unit unit ] */ ; - IF_LEFT - { PUSH nat 922337203685477580700 - /* [ nat : unit ] */ ; - PUSH mutez 10 - /* [ mutez : nat : unit ] */ ; - MUL - /* [ mutez : unit ] */ ; - DROP - /* [ unit ] */ } - { PUSH mutez 10 - /* [ mutez : unit ] */ ; - PUSH nat 922337203685477580700 - /* [ nat : mutez : unit ] */ ; - MUL - /* [ mutez : unit ] */ ; - DROP - /* [ unit ] */ } ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.065 units remaining) michelson_test_scripts/opcodes/munch.tz -{ parameter - (or (bytes %bytes) (or (lambda %lambda unit unit) (or (nat %nat) (list %list_nat nat)))) ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039992.323 units remaining) michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz -{ parameter mutez ; - storage bls12_381_fr ; - code { CAR - /* [ mutez ] */ ; - PUSH mutez 1 - /* [ mutez : mutez ] */ ; - SWAP - /* [ mutez : mutez ] */ ; - EDIV - /* [ option (pair nat mutez) ] */ ; - ASSERT_SOME ; - CAR - /* [ nat ] */ ; - PUSH bls12_381_fr 1 - /* [ bls12_381_fr : nat ] */ ; - MUL - /* [ bls12_381_fr ] */ ; - NIL operation - /* [ list operation : bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) bls12_381_fr ] */ } } -Well typed (Gas remaining: 1039996.161 units remaining) michelson_test_scripts/opcodes/neg.tz -{ parameter (or int nat) ; - storage int ; - code { CAR - /* [ or int nat ] */ ; - IF_LEFT { NEG /* [ int ] */ } { NEG /* [ int ] */ } ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/neg_bls12_381_fr.tz -{ parameter bls12_381_fr ; - storage (option bls12_381_fr) ; - code { CAR - /* [ bls12_381_fr ] */ ; - NEG - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/neg_bls12_381_g1.tz -{ parameter bls12_381_g1 ; - storage (option bls12_381_g1) ; - code { CAR - /* [ bls12_381_g1 ] */ ; - NEG - /* [ bls12_381_g1 ] */ ; - SOME - /* [ option bls12_381_g1 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g1 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g1) ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/neg_bls12_381_g2.tz -{ parameter bls12_381_g2 ; - storage (option bls12_381_g2) ; - code { CAR - /* [ bls12_381_g2 ] */ ; - NEG - /* [ bls12_381_g2 ] */ ; - SOME - /* [ option bls12_381_g2 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g2 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g2) ] */ } } -Well typed (Gas remaining: 1039997.217 units remaining) michelson_test_scripts/opcodes/none.tz -{ parameter unit ; - storage (option nat) ; - code { DROP - /* [] */ ; - NONE nat - /* [ option nat ] */ ; - NIL operation - /* [ list operation : option nat ] */ ; - PAIR - /* [ pair (list operation) (option nat) ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/opcodes/noop.tz -{ parameter unit ; - storage unit ; - code { CDR - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/not.tz -{ parameter bool ; - storage (option bool) ; - code { CAR - /* [ bool ] */ ; - NOT - /* [ bool ] */ ; - SOME - /* [ option bool ] */ ; - NIL operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039995.545 units remaining) michelson_test_scripts/opcodes/not_binary.tz -{ parameter (or int nat) ; - storage (option int) ; - code { CAR - /* [ or int nat ] */ ; - IF_LEFT { NOT /* [ int ] */ } { NOT /* [ int ] */ } ; - SOME - /* [ option int ] */ ; - NIL operation - /* [ list operation : option int ] */ ; - PAIR - /* [ pair (list operation) (option int) ] */ } } -Well typed (Gas remaining: 1039981.341 units remaining) michelson_test_scripts/opcodes/not_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - NOT - /* [ bytes ] */ ; - PUSH bytes 0xfa - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0005 - /* [ bytes ] */ ; - NOT - /* [ bytes ] */ ; - PUSH bytes 0xfffa - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0xff05 - /* [ bytes ] */ ; - NOT - /* [ bytes ] */ ; - PUSH bytes 0x00fa - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039994.425 units remaining) michelson_test_scripts/opcodes/or.tz -{ parameter (pair bool bool) ; - storage (option bool) ; - code { CAR - /* [ pair bool bool ] */ ; - DUP - /* [ pair bool bool : pair bool bool ] */ ; - CAR - /* [ bool : pair bool bool ] */ ; - SWAP - /* [ pair bool bool : bool ] */ ; - CDR - /* [ bool : bool ] */ ; - OR - /* [ bool ] */ ; - SOME - /* [ option bool ] */ ; - NIL operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039996.129 units remaining) michelson_test_scripts/opcodes/or_binary.tz -{ parameter (pair nat nat) ; - storage (option nat) ; - code { CAR - /* [ pair nat nat ] */ ; - UNPAIR - /* [ nat : nat ] */ ; - OR - /* [ nat ] */ ; - SOME - /* [ option nat ] */ ; - NIL operation - /* [ list operation : option nat ] */ ; - PAIR - /* [ pair (list operation) (option nat) ] */ } } -Well typed (Gas remaining: 1039978.916 units remaining) michelson_test_scripts/opcodes/or_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x06 - /* [ bytes : bytes ] */ ; - OR - /* [ bytes ] */ ; - PUSH bytes 0x07 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0005 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - OR - /* [ bytes ] */ ; - PUSH bytes 0x0107 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - OR - /* [ bytes ] */ ; - PUSH bytes 0x0107 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.334 units remaining) michelson_test_scripts/opcodes/originate_big_map.tz -{ parameter (big_map int int) ; - storage (big_map int int) ; - code { CAR - /* [ big_map int int ] */ ; - NIL operation - /* [ list operation : big_map int int ] */ ; - PAIR - /* [ pair (list operation) (big_map int int) ] */ } } -Well typed (Gas remaining: 1039987.310 units remaining) michelson_test_scripts/opcodes/packunpack.tz -{ parameter (pair (pair (pair string (list int)) (set nat)) bytes) ; - storage unit ; - code { CAR - /* [ pair (pair (pair string (list int)) (set nat)) bytes ] */ ; - UNPAIR - /* [ pair (pair string (list int)) (set nat) : bytes ] */ ; - DIP { DUP /* [ bytes : bytes ] */ } - /* [ pair (pair string (list int)) (set nat) : bytes : bytes ] */ ; - PACK - /* [ bytes : bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNPACK - (pair (pair string (list int)) (set nat)) - /* [ option (pair (pair string (list int)) (set nat)) ] */ ; - ASSERT_SOME ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039888.774 units remaining) michelson_test_scripts/opcodes/packunpack_rev.tz -{ parameter (pair int nat string bytes mutez bool key_hash timestamp address) ; - storage unit ; - code { CAR - /* [ pair int nat string bytes mutez bool key_hash timestamp address ] */ ; - DUP - /* [ pair int nat string bytes mutez bool key_hash timestamp address - : pair int nat string bytes mutez bool key_hash timestamp address ] */ ; - CAR - /* [ int : pair int nat string bytes mutez bool key_hash timestamp address ] */ ; - DIP { UNPAIR - /* [ int : pair nat string bytes mutez bool key_hash timestamp address ] */ } - /* [ int : int : pair nat string bytes mutez bool key_hash timestamp address ] */ ; - PACK - /* [ bytes : int : pair nat string bytes mutez bool key_hash timestamp address ] */ ; - UNPACK - int - /* [ option int : int - : pair nat string bytes mutez bool key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair nat string bytes mutez bool key_hash timestamp address - : pair nat string bytes mutez bool key_hash timestamp address ] */ ; - CAR - /* [ nat : pair nat string bytes mutez bool key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ nat : pair string bytes mutez bool key_hash timestamp address ] */ } - /* [ nat : nat : pair string bytes mutez bool key_hash timestamp address ] */ ; - PACK - /* [ bytes : nat : pair string bytes mutez bool key_hash timestamp address ] */ ; - UNPACK - nat - /* [ option nat : nat - : pair string bytes mutez bool key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair string bytes mutez bool key_hash timestamp address - : pair string bytes mutez bool key_hash timestamp address ] */ ; - CAR - /* [ string : pair string bytes mutez bool key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ string : pair bytes mutez bool key_hash timestamp address ] */ } - /* [ string : string : pair bytes mutez bool key_hash timestamp address ] */ ; - PACK - /* [ bytes : string : pair bytes mutez bool key_hash timestamp address ] */ ; - UNPACK - string - /* [ option string : string : pair bytes mutez bool key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair bytes mutez bool key_hash timestamp address - : pair bytes mutez bool key_hash timestamp address ] */ ; - CAR - /* [ bytes : pair bytes mutez bool key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ bytes : pair mutez bool key_hash timestamp address ] */ } - /* [ bytes : bytes : pair mutez bool key_hash timestamp address ] */ ; - PACK - /* [ bytes : bytes : pair mutez bool key_hash timestamp address ] */ ; - UNPACK - bytes - /* [ option bytes : bytes : pair mutez bool key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair mutez bool key_hash timestamp address - : pair mutez bool key_hash timestamp address ] */ ; - CAR - /* [ mutez : pair mutez bool key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ mutez : pair bool key_hash timestamp address ] */ } - /* [ mutez : mutez : pair bool key_hash timestamp address ] */ ; - PACK - /* [ bytes : mutez : pair bool key_hash timestamp address ] */ ; - UNPACK mutez - /* [ option mutez : mutez : pair bool key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair bool key_hash timestamp address - : pair bool key_hash timestamp address ] */ ; - CAR - /* [ bool : pair bool key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ bool : pair key_hash timestamp address ] */ } - /* [ bool : bool : pair key_hash timestamp address ] */ ; - PACK - /* [ bytes : bool : pair key_hash timestamp address ] */ ; - UNPACK bool - /* [ option bool : bool : pair key_hash timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair key_hash timestamp address : pair key_hash timestamp address ] */ ; - CAR - /* [ key_hash : pair key_hash timestamp address ] */ ; - DIP { UNPAIR /* [ key_hash : pair timestamp address ] */ } - /* [ key_hash : key_hash : pair timestamp address ] */ ; - PACK - /* [ bytes : key_hash : pair timestamp address ] */ ; - UNPACK key_hash - /* [ option key_hash : key_hash : pair timestamp address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ pair timestamp address : pair timestamp address ] */ ; - CAR - /* [ timestamp : pair timestamp address ] */ ; - DIP { UNPAIR /* [ timestamp : address ] */ } - /* [ timestamp : timestamp : address ] */ ; - PACK - /* [ bytes : timestamp : address ] */ ; - UNPACK timestamp - /* [ option timestamp : timestamp : address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - DUP - /* [ address : address ] */ ; - PACK - /* [ bytes : address ] */ ; - UNPACK address - /* [ option address : address ] */ ; - ASSERT_SOME ; - ASSERT_CMPEQ ; - PUSH int 0 - /* [ int ] */ ; - PACK - /* [ bytes ] */ ; - UNPACK nat - /* [ option nat ] */ ; - ASSERT_SOME ; - DROP - /* [] */ ; - PUSH int -1 - /* [ int ] */ ; - PACK - /* [ bytes ] */ ; - UNPACK nat - /* [ option nat ] */ ; - ASSERT_NONE ; - PUSH bytes 0x - /* [ bytes ] */ ; - UNPACK nat - /* [ option nat ] */ ; - ASSERT_NONE ; - PUSH bytes 0x04 - /* [ bytes ] */ ; - UNPACK nat - /* [ option nat ] */ ; - ASSERT_NONE ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - UNPACK nat - /* [ option nat ] */ ; - ASSERT_NONE ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039875.178 units remaining) michelson_test_scripts/opcodes/packunpack_rev_cty.tz -{ parameter - (pair key - unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes)) ; - storage unit ; - code { CAR - /* [ pair key - unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DUP - /* [ pair key - unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair key - unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ key - : pair key - unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ key - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ key : key - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - PACK - /* [ bytes : key - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - UNPACK - key - /* [ option key - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ unit - : pair unit - signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ unit - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ unit : unit - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - PACK - /* [ bytes : unit - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - UNPACK - unit - /* [ option unit - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ signature - : pair signature - (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ signature - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ signature : signature - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - PACK - /* [ bytes : signature - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - UNPACK - signature - /* [ option signature - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ option signature - : pair (option signature) - (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ option signature - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ option signature : option signature - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - PACK - /* [ bytes : option signature - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - UNPACK - (option signature) - /* [ option (option signature) - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ list unit - : pair (list unit) - (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ list unit - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ list unit : list unit - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - PACK - /* [ bytes : list unit - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - UNPACK - (list unit) - /* [ option (list unit) - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - CAR - /* [ set bool - : pair (set bool) - (pair int int) - (or key_hash timestamp) - (map int string) - (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ set bool - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ } - /* [ set bool : set bool - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - PACK - /* [ bytes : set bool - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - UNPACK - (set bool) - /* [ option (set bool) - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - CAR - /* [ pair int int - : pair (pair int int) (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ pair int int - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ } - /* [ pair int int : pair int int - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - PACK - /* [ bytes : pair int int - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - UNPACK - (pair int int) - /* [ option (pair int int) - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ } - /* [ bytes : bytes - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (or key_hash timestamp) (map int string) (lambda string bytes) - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - CAR - /* [ or key_hash timestamp - : pair (or key_hash timestamp) (map int string) (lambda string bytes) ] */ ; - DIP { UNPAIR - /* [ or key_hash timestamp : pair (map int string) (lambda string bytes) ] */ } - /* [ or key_hash timestamp : or key_hash timestamp - : pair (map int string) (lambda string bytes) ] */ ; - PACK - /* [ bytes : or key_hash timestamp - : pair (map int string) (lambda string bytes) ] */ ; - DIP { PACK - /* [ bytes : pair (map int string) (lambda string bytes) ] */ ; - UNPACK - (or key_hash timestamp) - /* [ option (or key_hash timestamp) - : pair (map int string) (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes : pair (map int string) (lambda string bytes) ] */ } - /* [ bytes : bytes : pair (map int string) (lambda string bytes) ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ pair (map int string) (lambda string bytes) - : pair (map int string) (lambda string bytes) ] */ ; - CAR - /* [ map int string : pair (map int string) (lambda string bytes) ] */ ; - DIP { UNPAIR /* [ map int string : lambda string bytes ] */ } - /* [ map int string : map int string : lambda string bytes ] */ ; - PACK - /* [ bytes : map int string : lambda string bytes ] */ ; - DIP { PACK - /* [ bytes : lambda string bytes ] */ ; - UNPACK (map int string) - /* [ option (map int string) : lambda string bytes ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes : lambda string bytes ] */ } - /* [ bytes : bytes : lambda string bytes ] */ ; - ASSERT_CMPEQ ; - DUP - /* [ lambda string bytes : lambda string bytes ] */ ; - PACK - /* [ bytes : lambda string bytes ] */ ; - DIP { PACK - /* [ bytes ] */ ; - UNPACK (lambda string bytes) - /* [ option (lambda string bytes) ] */ ; - ASSERT_SOME ; - PACK - /* [ bytes ] */ } - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.769 units remaining) michelson_test_scripts/opcodes/pair_id.tz -{ parameter (pair bool bool) ; - storage (option (pair bool bool)) ; - code { CAR - /* [ pair bool bool ] */ ; - SOME - /* [ option (pair bool bool) ] */ ; - NIL operation - /* [ list operation : option (pair bool bool) ] */ ; - PAIR - /* [ pair (list operation) (option (pair bool bool)) ] */ } } -Well typed (Gas remaining: 1039996.509 units remaining) michelson_test_scripts/opcodes/pairing_check.tz -{ parameter (list (pair bls12_381_g1 bls12_381_g2)) ; - storage (option bool) ; - code { CAR - /* [ list (pair bls12_381_g1 bls12_381_g2) ] */ ; - PAIRING_CHECK - /* [ bool ] */ ; - SOME - /* [ option bool ] */ ; - NIL operation - /* [ list operation : option bool ] */ ; - PAIR - /* [ pair (list operation) (option bool) ] */ } } -Well typed (Gas remaining: 1039993.994 units remaining) michelson_test_scripts/opcodes/pexec.tz -{ parameter nat ; - storage nat ; - code { LAMBDA - (pair nat nat) - nat - { UNPAIR /* [ nat : nat ] */ ; ADD /* [ nat ] */ } - /* [ lambda (pair nat nat) nat : pair nat nat ] */ ; - SWAP - /* [ pair nat nat : lambda (pair nat nat) nat ] */ ; - UNPAIR - /* [ nat : nat : lambda (pair nat nat) nat ] */ ; - DIP { APPLY /* [ lambda nat nat ] */ } - /* [ nat : lambda nat nat ] */ ; - EXEC - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039988.161 units remaining) michelson_test_scripts/opcodes/pexec_2.tz -{ parameter int ; - storage (list int) ; - code { UNPAIR @p @s - /* [ int : list int ] */ ; - LAMBDA - (pair int (pair int int)) - int - { UNPAIR - /* [ int : pair int int ] */ ; - DIP { UNPAIR /* [ int : int ] */ } - /* [ int : int : int ] */ ; - ADD - /* [ int : int ] */ ; - MUL - /* [ int ] */ } - /* [ lambda (pair int int int) int : int : list int ] */ ; - SWAP - /* [ int : lambda (pair int int int) int : list int ] */ ; - APPLY - /* [ lambda (pair int int) int : list int ] */ ; - PUSH int 3 - /* [ int : lambda (pair int int) int : list int ] */ ; - APPLY - /* [ lambda int int : list int ] */ ; - SWAP - /* [ list int : lambda int int ] */ ; - MAP { DIP { DUP /* [ lambda int int : lambda int int ] */ } - /* [ int : lambda int int : lambda int int ] */ ; - EXEC - /* [ int : lambda int int ] */ } - /* [ list int : lambda int int ] */ ; - DIP { DROP /* [] */ } - /* [ list int ] */ ; - NIL operation - /* [ list operation : list int ] */ ; - PAIR - /* [ pair (list operation) (list int) ] */ } } -Well typed (Gas remaining: 1039995.281 units remaining) michelson_test_scripts/opcodes/proxy.tz -{ parameter (contract unit) ; - storage unit ; - code { UNPAIR - /* [ contract unit : unit ] */ ; - AMOUNT - /* [ mutez : contract unit : unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : unit ] */ ; - DIP { NIL operation /* [ list operation : unit ] */ } - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.556 units remaining) michelson_test_scripts/opcodes/ret_int.tz -{ parameter unit ; - storage (option nat) ; - code { DROP - /* [] */ ; - PUSH nat 300 - /* [ nat ] */ ; - SOME - /* [ option nat ] */ ; - NIL operation - /* [ list operation : option nat ] */ ; - PAIR - /* [ pair (list operation) (option nat) ] */ } } -Well typed (Gas remaining: 1039995.453 units remaining) michelson_test_scripts/opcodes/reverse.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - NIL string - /* [ list string : list string ] */ ; - SWAP - /* [ list string : list string ] */ ; - ITER { CONS /* [ list string ] */ } - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039990.243 units remaining) michelson_test_scripts/opcodes/reverse_loop.tz -{ parameter (list string) ; - storage (list string) ; - code { CAR - /* [ list string ] */ ; - NIL string - /* [ list string : list string ] */ ; - SWAP - /* [ list string : list string ] */ ; - PUSH bool True - /* [ bool : list string : list string ] */ ; - LOOP { IF_CONS - { SWAP - /* [ list string : string : list string ] */ ; - DIP { CONS /* [ list string ] */ } - /* [ list string : list string ] */ ; - PUSH bool True - /* [ bool : list string : list string ] */ } - { NIL string - /* [ list string : list string ] */ ; - PUSH bool False - /* [ bool : list string : list string ] */ } } - /* [ list string : list string ] */ ; - DROP - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039997.397 units remaining) michelson_test_scripts/opcodes/sapling_empty_state.tz -{ parameter unit ; - storage (sapling_state 8) ; - code { DROP - /* [] */ ; - SAPLING_EMPTY_STATE 8 - /* [ sapling_state 8 ] */ ; - NIL operation - /* [ list operation : sapling_state 8 ] */ ; - PAIR - /* [ pair (list operation) (sapling_state 8) ] */ } } -Well typed (Gas remaining: 1039996.945 units remaining) michelson_test_scripts/opcodes/self.tz -{ parameter unit ; - storage address ; - code { DROP - /* [] */ ; - SELF - /* [ contract unit ] */ ; - ADDRESS - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039990.189 units remaining) michelson_test_scripts/opcodes/self_address.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - LAMBDA - unit - address - { DROP /* [] */ ; SELF_ADDRESS /* [ address ] */ } - /* [ lambda unit address ] */ ; - UNIT - /* [ unit : lambda unit address ] */ ; - EXEC - /* [ address ] */ ; - SELF - /* [ contract unit : address ] */ ; - ADDRESS - /* [ address : address ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039986.567 units remaining) michelson_test_scripts/opcodes/self_address_after_fib_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 3 - /* [ nat : address : address ] */ ; - VIEW "fib" nat - /* [ option nat : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF_ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039987.050 units remaining) michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" string - /* [ option string : address ] */ ; - ASSERT_NONE ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF_ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039986.392 units remaining) michelson_test_scripts/opcodes/self_address_after_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF_ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039986.060 units remaining) michelson_test_scripts/opcodes/self_after_fib_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 3 - /* [ nat : address : address ] */ ; - VIEW "fib" nat - /* [ option nat : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF - /* [ contract address : operation ] */ ; - ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039986.452 units remaining) michelson_test_scripts/opcodes/self_after_nonexistent_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "nonexistent" string - /* [ option string : address ] */ ; - ASSERT_NONE ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF - /* [ contract address : operation ] */ ; - ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039985.886 units remaining) michelson_test_scripts/opcodes/self_after_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SELF - /* [ contract address : operation ] */ ; - ADDRESS - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039988.800 units remaining) michelson_test_scripts/opcodes/self_with_default_entrypoint.tz -{ parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; - storage unit ; - code { DROP - /* [] */ ; - SELF - /* [ contract unit ] */ ; - DROP - /* [] */ ; - SELF %A - /* [ contract nat ] */ ; - DROP - /* [] */ ; - SELF %default - /* [ contract unit ] */ ; - PACK - /* [ bytes ] */ ; - SELF - /* [ contract unit : bytes ] */ ; - PACK - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039970.861 units remaining) michelson_test_scripts/opcodes/self_with_entrypoint.tz -{ parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; - storage unit ; - code { DROP - /* [] */ ; - SELF %A - /* [ contract nat ] */ ; - PACK @Apacked - /* [ bytes ] */ ; - SELF %default - /* [ contract (or (or nat bool) (or unit string)) : bytes ] */ ; - PACK @defpacked - /* [ bytes : bytes ] */ ; - DUP - /* [ bytes : bytes : bytes ] */ ; - DIP { SWAP /* [ bytes : bytes ] */ } - /* [ bytes : bytes : bytes ] */ ; - ASSERT_CMPNEQ ; - SELF - /* [ contract (or (or nat bool) (or unit string)) : bytes ] */ ; - PACK @selfpacked - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - SELF %A - /* [ contract nat ] */ ; - CAST (contract nat) - /* [ contract nat ] */ ; - DROP - /* [] */ ; - SELF %B - /* [ contract bool ] */ ; - CAST (contract bool) - /* [ contract bool ] */ ; - DROP - /* [] */ ; - SELF %maybe_C - /* [ contract (or unit string) ] */ ; - CAST (contract (or unit string)) - /* [ contract (or unit string) ] */ ; - DROP - /* [] */ ; - SELF %Z - /* [ contract unit ] */ ; - CAST (contract unit) - /* [ contract unit ] */ ; - DROP - /* [] */ ; - SELF - /* [ contract (or (or nat bool) (or unit string)) ] */ ; - CAST (contract (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C)))) - /* [ contract (or (or nat bool) (or unit string)) ] */ ; - DROP - /* [] */ ; - SELF %default - /* [ contract (or (or nat bool) (or unit string)) ] */ ; - CAST (contract (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C)))) - /* [ contract (or (or nat bool) (or unit string)) ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/sender.tz -{ parameter unit ; - storage address ; - code { DROP - /* [] */ ; - SENDER - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039986.567 units remaining) michelson_test_scripts/opcodes/sender_after_fib_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 3 - /* [ nat : address : address ] */ ; - VIEW "fib" nat - /* [ option nat : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SENDER - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039987.050 units remaining) michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" string - /* [ option string : address ] */ ; - ASSERT_NONE ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SENDER - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039986.392 units remaining) michelson_test_scripts/opcodes/sender_after_view.tz -{ parameter address ; - storage address ; - code { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - PUSH nat 0 - /* [ nat : address : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) : address ] */ ; - ASSERT_SOME ; - DROP - /* [ address ] */ ; - CONTRACT nat - /* [ option (contract nat) ] */ ; - ASSERT_SOME ; - PUSH mutez 1500 - /* [ mutez : contract nat ] */ ; - PUSH nat 0 - /* [ nat : mutez : contract nat ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - SENDER - /* [ address : operation ] */ ; - SWAP - /* [ operation : address ] */ ; - NIL operation - /* [ list operation : operation : address ] */ ; - SWAP - /* [ operation : list operation : address ] */ ; - CONS - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039992.274 units remaining) michelson_test_scripts/opcodes/set_car.tz -{ parameter string ; - storage (pair (string %s) (nat %n)) ; - code { DUP - /* [ pair string string nat : pair string string nat ] */ ; - CDR - /* [ pair string nat : pair string string nat ] */ ; - DIP { CAR /* [ string ] */ } - /* [ pair string nat : string ] */ ; - SET_CAR %s ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } } -Well typed (Gas remaining: 1039992.742 units remaining) michelson_test_scripts/opcodes/set_cdr.tz -{ parameter nat ; - storage (pair (string %s) (nat %n)) ; - code { DUP - /* [ pair nat string nat : pair nat string nat ] */ ; - CDR - /* [ pair string nat : pair nat string nat ] */ ; - DIP { CAR /* [ nat ] */ } - /* [ pair string nat : nat ] */ ; - SET_CDR %n ; - NIL operation - /* [ list operation : pair string nat ] */ ; - PAIR - /* [ pair (list operation) string nat ] */ } } -Well typed (Gas remaining: 1039996.276 units remaining) michelson_test_scripts/opcodes/set_delegate.tz -{ parameter (option key_hash) ; - storage unit ; - code { UNPAIR - /* [ option key_hash : unit ] */ ; - SET_DELEGATE - /* [ operation : unit ] */ ; - DIP { NIL operation /* [ list operation : unit ] */ } - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.680 units remaining) michelson_test_scripts/opcodes/set_id.tz -{ parameter (set string) ; - storage (set string) ; - code { CAR - /* [ set string ] */ ; - NIL operation - /* [ list operation : set string ] */ ; - PAIR - /* [ pair (list operation) (set string) ] */ } } -Well typed (Gas remaining: 1039995.593 units remaining) michelson_test_scripts/opcodes/set_iter.tz -{ parameter (set int) ; - storage int ; - code { CAR - /* [ set int ] */ ; - PUSH int 0 - /* [ int : set int ] */ ; - SWAP - /* [ set int : int ] */ ; - ITER { ADD /* [ int ] */ } - /* [ int ] */ ; - NIL operation - /* [ list operation : int ] */ ; - PAIR - /* [ pair (list operation) int ] */ } } -Well typed (Gas remaining: 1039989.840 units remaining) michelson_test_scripts/opcodes/set_member.tz -{ parameter string ; - storage (pair (set string) (option bool)) ; - code { DUP - /* [ pair string (set string) (option bool) - : pair string (set string) (option bool) ] */ ; - DUP - /* [ pair string (set string) (option bool) - : pair string (set string) (option bool) - : pair string (set string) (option bool) ] */ ; - CAR - /* [ string : pair string (set string) (option bool) - : pair string (set string) (option bool) ] */ ; - DIP { CDAR } - /* [ string : set string : pair string (set string) (option bool) ] */ ; - MEM - /* [ bool : pair string (set string) (option bool) ] */ ; - SOME - /* [ option bool : pair string (set string) (option bool) ] */ ; - DIP { CDAR } - /* [ option bool : set string ] */ ; - SWAP - /* [ set string : option bool ] */ ; - PAIR - /* [ pair (set string) (option bool) ] */ ; - NIL operation - /* [ list operation : pair (set string) (option bool) ] */ ; - PAIR - /* [ pair (list operation) (set string) (option bool) ] */ } } -Well typed (Gas remaining: 1039997.360 units remaining) michelson_test_scripts/opcodes/set_size.tz -{ parameter (set int) ; - storage nat ; - code { CAR - /* [ set int ] */ ; - SIZE - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039952.034 units remaining) michelson_test_scripts/opcodes/sets.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH (set nat) { 0 ; 1 ; 3 } - /* [ set nat ] */ ; - DROP - /* [] */ ; - PUSH (set int) { -1 ; 0 ; 3 } - /* [ set int ] */ ; - DROP - /* [] */ ; - PUSH (set mutez) { 1 ; 4 ; 5 ; 10 ; 1923 } - /* [ set mutez ] */ ; - DROP - /* [] */ ; - PUSH (set timestamp) - { -1 ; 0 ; "2017-09-16T08:38:04Z" ; "2019-09-16T08:38:05Z" } - /* [ set timestamp ] */ ; - DROP - /* [] */ ; - PUSH (set bool) {} - /* [ set bool ] */ ; - DROP - /* [] */ ; - PUSH (set bool) { True } - /* [ set bool ] */ ; - DROP - /* [] */ ; - PUSH (set bool) { False } - /* [ set bool ] */ ; - DROP - /* [] */ ; - PUSH (set bool) { False ; True } - /* [ set bool ] */ ; - DROP - /* [] */ ; - PUSH (set string) { "" ; "A" ; "B" ; "a" ; "aa" ; "b" } - /* [ set string ] */ ; - DROP - /* [] */ ; - PUSH (set bytes) { 0x ; 0x01 ; 0x02 ; 0xaabbcc } - /* [ set bytes ] */ ; - DROP - /* [] */ ; - PUSH (set key_hash) - { "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ; - "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" } - /* [ set key_hash ] */ ; - DROP - /* [] */ ; - PUSH (set address) - { "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" ; - "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv" ; - "KT1TZCh8fmUbuDqFxetPWC2fsQanAHzLx4W9" } - /* [ set address ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039996.837 units remaining) michelson_test_scripts/opcodes/sha3.tz -{ storage (option bytes) ; - parameter bytes ; - code { CAR - /* [ bytes ] */ ; - SHA3 - /* [ bytes ] */ ; - SOME - /* [ option bytes ] */ ; - NIL operation - /* [ list operation : option bytes ] */ ; - PAIR - /* [ pair (list operation) (option bytes) ] */ } } -Well typed (Gas remaining: 1039994.259 units remaining) michelson_test_scripts/opcodes/shifts.tz -{ parameter (or (pair nat nat) (pair nat nat)) ; - storage (option nat) ; - code { CAR - /* [ or (pair nat nat) (pair nat nat) ] */ ; - IF_LEFT - { UNPAIR /* [ nat : nat ] */ ; LSL /* [ nat ] */ } - { UNPAIR /* [ nat : nat ] */ ; LSR /* [ nat ] */ } ; - SOME - /* [ option nat ] */ ; - NIL operation - /* [ list operation : option nat ] */ ; - PAIR - /* [ pair (list operation) (option nat) ] */ } } -Well typed (Gas remaining: 1039993.747 units remaining) michelson_test_scripts/opcodes/slice.tz -{ parameter (pair nat nat) ; - storage (option string) ; - code { UNPAIR - /* [ pair nat nat : option string ] */ ; - SWAP - /* [ option string : pair nat nat ] */ ; - IF_SOME - { SWAP - /* [ pair nat nat : string ] */ ; - UNPAIR - /* [ nat : nat : string ] */ ; - SLICE - /* [ option string ] */ } - { DROP /* [] */ ; NONE string /* [ option string ] */ } ; - NIL operation - /* [ list operation : option string ] */ ; - PAIR - /* [ pair (list operation) (option string) ] */ } } -Well typed (Gas remaining: 1039993.747 units remaining) michelson_test_scripts/opcodes/slice_bytes.tz -{ parameter (pair nat nat) ; - storage (option bytes) ; - code { UNPAIR - /* [ pair nat nat : option bytes ] */ ; - SWAP - /* [ option bytes : pair nat nat ] */ ; - IF_SOME - { SWAP - /* [ pair nat nat : bytes ] */ ; - UNPAIR - /* [ nat : nat : bytes ] */ ; - SLICE - /* [ option bytes ] */ } - { DROP /* [] */ ; NONE bytes /* [ option bytes ] */ } ; - NIL operation - /* [ list operation : option bytes ] */ ; - PAIR - /* [ pair (list operation) (option bytes) ] */ } } -Well typed (Gas remaining: 1039937.057 units remaining) michelson_test_scripts/opcodes/slices.tz -{ parameter (pair bytes signature) ; - storage key ; - code { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CAAR ; - DUP - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - SIZE - /* [ nat : bytes : pair (pair bytes signature) key ] */ ; - PUSH nat 128 - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SWAP - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SUB - /* [ int : bytes : pair (pair bytes signature) key ] */ ; - ISNAT - /* [ option nat : bytes : pair (pair bytes signature) key ] */ ; - IF_SOME { /* [ nat : bytes : pair (pair bytes signature) key ] */ } { FAIL } ; - PUSH nat 128 - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SLICE @payload - /* [ option bytes : pair (pair bytes signature) key ] */ ; - ASSERT_SOME ; - DUP - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - DIP { DIP { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CAAR ; - PUSH nat 32 - /* [ nat : bytes : pair (pair bytes signature) key ] */ ; - PUSH nat 0 - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SLICE - /* [ option bytes : pair (pair bytes signature) key ] */ ; - ASSERT_SOME } - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - SHA256 - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - ASSERT_CMPEQ } - /* [ bytes : pair (pair bytes signature) key ] */ ; - DUP - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - DIP { DIP { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CAAR ; - PUSH nat 32 - /* [ nat : bytes : pair (pair bytes signature) key ] */ ; - PUSH nat 32 - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SLICE - /* [ option bytes : pair (pair bytes signature) key ] */ ; - ASSERT_SOME } - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - BLAKE2B - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - ASSERT_CMPEQ } - /* [ bytes : pair (pair bytes signature) key ] */ ; - DUP - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - DIP { DIP { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CAAR ; - PUSH nat 64 - /* [ nat : bytes : pair (pair bytes signature) key ] */ ; - PUSH nat 64 - /* [ nat : nat : bytes : pair (pair bytes signature) key ] */ ; - SLICE - /* [ option bytes : pair (pair bytes signature) key ] */ ; - ASSERT_SOME } - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - SHA512 - /* [ bytes : bytes : pair (pair bytes signature) key ] */ ; - ASSERT_CMPEQ } - /* [ bytes : pair (pair bytes signature) key ] */ ; - DIP { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CDR - /* [ key : pair (pair bytes signature) key ] */ ; - DIP { DUP - /* [ pair (pair bytes signature) key : pair (pair bytes signature) key ] */ ; - CADR } - /* [ key : signature : pair (pair bytes signature) key ] */ } - /* [ bytes : key : signature : pair (pair bytes signature) key ] */ ; - SWAP - /* [ key : bytes : signature : pair (pair bytes signature) key ] */ ; - DIP { SWAP /* [ signature : bytes : pair (pair bytes signature) key ] */ } - /* [ key : signature : bytes : pair (pair bytes signature) key ] */ ; - CHECK_SIGNATURE - /* [ bool : pair (pair bytes signature) key ] */ ; - ASSERT ; - CDR - /* [ key ] */ ; - DUP - /* [ key : key ] */ ; - HASH_KEY - /* [ key_hash : key ] */ ; - IMPLICIT_ACCOUNT - /* [ contract unit : key ] */ ; - BALANCE - /* [ mutez : contract unit : key ] */ ; - UNIT - /* [ unit : mutez : contract unit : key ] */ ; - TRANSFER_TOKENS - /* [ operation : key ] */ ; - NIL operation - /* [ list operation : operation : key ] */ ; - SWAP - /* [ operation : list operation : key ] */ ; - CONS - /* [ list operation : key ] */ ; - PAIR - /* [ pair (list operation) key ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/source.tz -{ parameter unit ; - storage address ; - code { DROP - /* [] */ ; - SOURCE - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039973.337 units remaining) michelson_test_scripts/opcodes/split_bytes.tz -{ parameter bytes ; - storage (list bytes) ; - code { UNPAIR - /* [ bytes : list bytes ] */ ; - DIP { NIL bytes - /* [ list bytes : list bytes ] */ ; - SWAP - /* [ list bytes : list bytes ] */ ; - ITER { CONS /* [ list bytes ] */ } - /* [ list bytes ] */ } - /* [ bytes : list bytes ] */ ; - DUP - /* [ bytes : bytes : list bytes ] */ ; - SIZE - /* [ nat : bytes : list bytes ] */ ; - PUSH nat 0 - /* [ nat : nat : bytes : list bytes ] */ ; - CMPNEQ ; - DIP { PUSH @index nat 0 /* [ nat : bytes : list bytes ] */ } - /* [ bool : nat : bytes : list bytes ] */ ; - LOOP { PAIR - /* [ pair nat bytes : list bytes ] */ ; - DUP - /* [ pair nat bytes : pair nat bytes : list bytes ] */ ; - DIP { UNPAIR - /* [ nat : bytes : list bytes ] */ ; - DIP { PUSH nat 1 /* [ nat : bytes : list bytes ] */ } - /* [ nat : nat : bytes : list bytes ] */ ; - SLICE - /* [ option bytes : list bytes ] */ ; - ASSERT_SOME ; - CONS @storage - /* [ list bytes ] */ } - /* [ pair nat bytes : list bytes ] */ ; - UNPAIR - /* [ nat : bytes : list bytes ] */ ; - PUSH nat 1 - /* [ nat : nat : bytes : list bytes ] */ ; - ADD @index - /* [ nat : bytes : list bytes ] */ ; - DUP - /* [ nat : nat : bytes : list bytes ] */ ; - DIP { DIP { DUP /* [ bytes : bytes : list bytes ] */ } - /* [ nat : bytes : bytes : list bytes ] */ ; - SWAP - /* [ bytes : nat : bytes : list bytes ] */ ; - SIZE - /* [ nat : nat : bytes : list bytes ] */ ; - CMPNEQ } - /* [ nat : bool : bytes : list bytes ] */ ; - SWAP - /* [ bool : nat : bytes : list bytes ] */ } - /* [ nat : bytes : list bytes ] */ ; - DROP - /* [ bytes : list bytes ] */ ; - DROP - /* [ list bytes ] */ ; - NIL bytes - /* [ list bytes : list bytes ] */ ; - SWAP - /* [ list bytes : list bytes ] */ ; - ITER { CONS /* [ list bytes ] */ } - /* [ list bytes ] */ ; - NIL operation - /* [ list operation : list bytes ] */ ; - PAIR - /* [ pair (list operation) (list bytes) ] */ } } -Well typed (Gas remaining: 1039973.337 units remaining) michelson_test_scripts/opcodes/split_string.tz -{ parameter string ; - storage (list string) ; - code { UNPAIR - /* [ string : list string ] */ ; - DIP { NIL string - /* [ list string : list string ] */ ; - SWAP - /* [ list string : list string ] */ ; - ITER { CONS /* [ list string ] */ } - /* [ list string ] */ } - /* [ string : list string ] */ ; - DUP - /* [ string : string : list string ] */ ; - SIZE - /* [ nat : string : list string ] */ ; - PUSH nat 0 - /* [ nat : nat : string : list string ] */ ; - CMPNEQ ; - DIP { PUSH @index nat 0 /* [ nat : string : list string ] */ } - /* [ bool : nat : string : list string ] */ ; - LOOP { PAIR - /* [ pair nat string : list string ] */ ; - DUP - /* [ pair nat string : pair nat string : list string ] */ ; - DIP { UNPAIR - /* [ nat : string : list string ] */ ; - DIP { PUSH nat 1 /* [ nat : string : list string ] */ } - /* [ nat : nat : string : list string ] */ ; - SLICE - /* [ option string : list string ] */ ; - ASSERT_SOME ; - CONS @storage - /* [ list string ] */ } - /* [ pair nat string : list string ] */ ; - UNPAIR - /* [ nat : string : list string ] */ ; - PUSH nat 1 - /* [ nat : nat : string : list string ] */ ; - ADD @index - /* [ nat : string : list string ] */ ; - DUP - /* [ nat : nat : string : list string ] */ ; - DIP { DIP { DUP /* [ string : string : list string ] */ } - /* [ nat : string : string : list string ] */ ; - SWAP - /* [ string : nat : string : list string ] */ ; - SIZE - /* [ nat : nat : string : list string ] */ ; - CMPNEQ } - /* [ nat : bool : string : list string ] */ ; - SWAP - /* [ bool : nat : string : list string ] */ } - /* [ nat : string : list string ] */ ; - DROP - /* [ string : list string ] */ ; - DROP - /* [ list string ] */ ; - NIL string - /* [ list string : list string ] */ ; - SWAP - /* [ list string : list string ] */ ; - ITER { CONS /* [ list string ] */ } - /* [ list string ] */ ; - NIL operation - /* [ list operation : list string ] */ ; - PAIR - /* [ pair (list operation) (list string) ] */ } } -Well typed (Gas remaining: 1039997.300 units remaining) michelson_test_scripts/opcodes/store_bls12_381_fr.tz -{ parameter bls12_381_fr ; - storage (option bls12_381_fr) ; - code { CAR - /* [ bls12_381_fr ] */ ; - SOME - /* [ option bls12_381_fr ] */ ; - NIL operation - /* [ list operation : option bls12_381_fr ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_fr) ] */ } } -Well typed (Gas remaining: 1039997.300 units remaining) michelson_test_scripts/opcodes/store_bls12_381_g1.tz -{ parameter bls12_381_g1 ; - storage (option bls12_381_g1) ; - code { CAR - /* [ bls12_381_g1 ] */ ; - SOME - /* [ option bls12_381_g1 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g1 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g1) ] */ } } -Well typed (Gas remaining: 1039997.300 units remaining) michelson_test_scripts/opcodes/store_bls12_381_g2.tz -{ parameter bls12_381_g2 ; - storage (option bls12_381_g2) ; - code { CAR - /* [ bls12_381_g2 ] */ ; - SOME - /* [ option bls12_381_g2 ] */ ; - NIL operation - /* [ list operation : option bls12_381_g2 ] */ ; - PAIR - /* [ pair (list operation) (option bls12_381_g2) ] */ } } -Well typed (Gas remaining: 1039997.907 units remaining) michelson_test_scripts/opcodes/store_input.tz -{ parameter string ; - storage string ; - code { CAR - /* [ string ] */ ; - NIL operation - /* [ list operation : string ] */ ; - PAIR - /* [ pair (list operation) string ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/store_now.tz -{ parameter unit ; - storage timestamp ; - code { DROP - /* [] */ ; - NOW - /* [ timestamp ] */ ; - NIL operation - /* [ list operation : timestamp ] */ ; - PAIR - /* [ pair (list operation) timestamp ] */ } } -Well typed (Gas remaining: 1039997.300 units remaining) michelson_test_scripts/opcodes/str_id.tz -{ parameter string ; - storage (option string) ; - code { CAR - /* [ string ] */ ; - SOME - /* [ option string ] */ ; - NIL operation - /* [ list operation : option string ] */ ; - PAIR - /* [ pair (list operation) (option string) ] */ } } -Well typed (Gas remaining: 1039995.013 units remaining) michelson_test_scripts/opcodes/sub_timestamp_delta.tz -{ parameter (pair timestamp int) ; - storage timestamp ; - code { CAR - /* [ pair timestamp int ] */ ; - DUP - /* [ pair timestamp int : pair timestamp int ] */ ; - CAR - /* [ timestamp : pair timestamp int ] */ ; - DIP { CDR /* [ int ] */ } - /* [ timestamp : int ] */ ; - SUB - /* [ timestamp ] */ ; - NIL operation - /* [ list operation : timestamp ] */ ; - PAIR - /* [ pair (list operation) timestamp ] */ } } -Well typed (Gas remaining: 1039986.401 units remaining) michelson_test_scripts/opcodes/subset.tz -{ parameter (pair (set string) (set string)) ; - storage bool ; - code { CAR - /* [ pair (set string) (set string) ] */ ; - DUP - /* [ pair (set string) (set string) : pair (set string) (set string) ] */ ; - CDR - /* [ set string : pair (set string) (set string) ] */ ; - DIP { CAR /* [ set string ] */ } - /* [ set string : set string ] */ ; - PUSH bool True - /* [ bool : set string : set string ] */ ; - PAIR - /* [ pair bool (set string) : set string ] */ ; - SWAP - /* [ set string : pair bool (set string) ] */ ; - ITER { DIP { DUP - /* [ pair bool (set string) : pair bool (set string) ] */ ; - DUP - /* [ pair bool (set string) : pair bool (set string) : pair bool (set string) ] */ ; - CDR - /* [ set string : pair bool (set string) : pair bool (set string) ] */ ; - DIP { CAR - /* [ bool : pair bool (set string) ] */ ; - DIP { CDR /* [ set string ] */ } - /* [ bool : set string ] */ } - /* [ set string : bool : set string ] */ } - /* [ string : set string : bool : set string ] */ ; - MEM - /* [ bool : bool : set string ] */ ; - AND - /* [ bool : set string ] */ ; - PAIR - /* [ pair bool (set string) ] */ } - /* [ pair bool (set string) ] */ ; - CAR - /* [ bool ] */ ; - NIL operation - /* [ list operation : bool ] */ ; - PAIR - /* [ pair (list operation) bool ] */ } } -Well typed (Gas remaining: 1039987.345 units remaining) michelson_test_scripts/opcodes/tez_add_sub.tz -{ parameter (pair mutez mutez) ; - storage (option (pair mutez mutez)) ; - code { CAR - /* [ pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez ] */ ; - DUP - /* [ pair mutez mutez : pair mutez mutez : pair mutez mutez ] */ ; - CAR - /* [ mutez : pair mutez mutez : pair mutez mutez ] */ ; - DIP { CDR /* [ mutez : pair mutez mutez ] */ } - /* [ mutez : mutez : pair mutez mutez ] */ ; - ADD - /* [ mutez : pair mutez mutez ] */ ; - DIP { DUP - /* [ pair mutez mutez : pair mutez mutez ] */ ; - CAR - /* [ mutez : pair mutez mutez ] */ ; - DIP { CDR /* [ mutez ] */ } - /* [ mutez : mutez ] */ ; - SUB_MUTEZ - /* [ option mutez ] */ ; - ASSERT_SOME } - /* [ mutez : mutez ] */ ; - PAIR - /* [ pair mutez mutez ] */ ; - SOME - /* [ option (pair mutez mutez) ] */ ; - NIL operation - /* [ list operation : option (pair mutez mutez) ] */ ; - PAIR - /* [ pair (list operation) (option (pair mutez mutez)) ] */ } } -Well typed (Gas remaining: 1039997.763 units remaining) michelson_test_scripts/opcodes/ticket_bad.tz -{ parameter unit ; - storage (ticket nat) ; - code { CDR - /* [ ticket nat ] */ ; - NIL operation - /* [ list operation : ticket nat ] */ ; - PAIR - /* [ pair (list operation) (ticket nat) ] */ } } -Well typed (Gas remaining: 1039991.976 units remaining) michelson_test_scripts/opcodes/ticket_big_store.tz -{ parameter nat ; - storage (big_map unit (ticket nat)) ; - code { UNPAIR - /* [ nat : big_map unit (ticket nat) ] */ ; - PUSH nat 1 - /* [ nat : nat : big_map unit (ticket nat) ] */ ; - SWAP - /* [ nat : nat : big_map unit (ticket nat) ] */ ; - TICKET - /* [ option (ticket nat) : big_map unit (ticket nat) ] */ ; - ASSERT_SOME ; - SOME - /* [ option (ticket nat) : big_map unit (ticket nat) ] */ ; - UNIT - /* [ unit : option (ticket nat) : big_map unit (ticket nat) ] */ ; - UPDATE - /* [ big_map unit (ticket nat) ] */ ; - NIL operation - /* [ list operation : big_map unit (ticket nat) ] */ ; - PAIR - /* [ pair (list operation) (big_map unit (ticket nat)) ] */ } } -Well typed (Gas remaining: 1039992.503 units remaining) michelson_test_scripts/opcodes/ticket_join.tz -{ parameter (ticket nat) ; - storage (option (ticket nat)) ; - code { UNPAIR - /* [ ticket nat : option (ticket nat) ] */ ; - SWAP - /* [ option (ticket nat) : ticket nat ] */ ; - IF_NONE - { /* [ ticket nat ] */ } - { PAIR - /* [ pair (ticket nat) (ticket nat) ] */ ; - JOIN_TICKETS - /* [ option (ticket nat) ] */ ; - ASSERT_SOME } ; - SOME - /* [ option (ticket nat) ] */ ; - NIL operation - /* [ list operation : option (ticket nat) ] */ ; - PAIR - /* [ pair (list operation) (option (ticket nat)) ] */ } } -Well typed (Gas remaining: 1039985.350 units remaining) michelson_test_scripts/opcodes/ticket_read.tz -{ parameter (ticket nat) ; - storage address ; - code { CAR - /* [ ticket nat ] */ ; - READ_TICKET - /* [ pair address nat nat : ticket nat ] */ ; - DIP { DROP /* [] */ } - /* [ pair address nat nat ] */ ; - UNPAIR - /* [ address : pair nat nat ] */ ; - DIP { UNPAIR /* [ nat : nat ] */ } - /* [ address : nat : nat ] */ ; - DIP 2 { PUSH nat 1 /* [ nat : nat ] */ ; ASSERT_CMPEQ } - /* [ address : nat ] */ ; - DIP { PUSH nat 42 /* [ nat : nat ] */ ; ASSERT_CMPEQ } - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039979.558 units remaining) michelson_test_scripts/opcodes/ticket_split.tz -{ parameter (ticket nat) ; - storage unit ; - code { CAR - /* [ ticket nat ] */ ; - PUSH (pair nat nat) (Pair 1 2) - /* [ pair nat nat : ticket nat ] */ ; - SWAP - /* [ ticket nat : pair nat nat ] */ ; - SPLIT_TICKET - /* [ option (pair (ticket nat) (ticket nat)) ] */ ; - ASSERT_SOME ; - UNPAIR - /* [ ticket nat : ticket nat ] */ ; - READ_TICKET - /* [ pair address nat nat : ticket nat : ticket nat ] */ ; - CDDR ; - PUSH nat 1 - /* [ nat : nat : ticket nat : ticket nat ] */ ; - ASSERT_CMPEQ ; - DROP - /* [ ticket nat ] */ ; - READ_TICKET - /* [ pair address nat nat : ticket nat ] */ ; - CDDR ; - PUSH nat 2 - /* [ nat : nat : ticket nat ] */ ; - ASSERT_CMPEQ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.074 units remaining) michelson_test_scripts/opcodes/ticket_store.tz -{ parameter (ticket nat) ; - storage (option (ticket nat)) ; - code { CAR - /* [ ticket nat ] */ ; - SOME - /* [ option (ticket nat) ] */ ; - NIL operation - /* [ list operation : option (ticket nat) ] */ ; - PAIR - /* [ pair (list operation) (option (ticket nat)) ] */ } } -Well typed (Gas remaining: 1039997.454 units remaining) michelson_test_scripts/opcodes/ticket_store-2.tz -{ parameter (option (ticket nat)) ; - storage (option (ticket nat)) ; - code { CAR - /* [ option (ticket nat) ] */ ; - NIL operation - /* [ list operation : option (ticket nat) ] */ ; - PAIR - /* [ pair (list operation) (option (ticket nat)) ] */ } } -Well typed (Gas remaining: 1039986.744 units remaining) michelson_test_scripts/opcodes/ticketer.tz -{ parameter address ; - storage nat ; - code { UNPAIR - /* [ address : nat ] */ ; - DIP { DUP /* [ nat : nat ] */ } - /* [ address : nat : nat ] */ ; - SWAP - /* [ nat : address : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : address : nat ] */ ; - SWAP - /* [ nat : nat : address : nat ] */ ; - TICKET - /* [ option (ticket nat) : address : nat ] */ ; - ASSERT_SOME ; - DIP { CONTRACT (ticket nat) - /* [ option (contract (ticket nat)) : nat ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract (ticket nat) : nat ] */ } - /* [ ticket nat : mutez : contract (ticket nat) : nat ] */ ; - TRANSFER_TOKENS - /* [ operation : nat ] */ ; - NIL operation - /* [ list operation : operation : nat ] */ ; - SWAP - /* [ operation : list operation : nat ] */ ; - CONS - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039986.226 units remaining) michelson_test_scripts/opcodes/ticketer-2.tz -{ parameter (pair (pair address nat) nat) ; - storage unit ; - code { CAR - /* [ pair (pair address nat) nat ] */ ; - UNPAIR - /* [ pair address nat : nat ] */ ; - UNPAIR - /* [ address : nat : nat ] */ ; - CONTRACT (ticket nat) - /* [ option (contract (ticket nat)) : nat : nat ] */ ; - ASSERT_SOME ; - DIP { TICKET /* [ option (ticket nat) ] */ ; ASSERT_SOME } - /* [ contract (ticket nat) : ticket nat ] */ ; - SWAP - /* [ ticket nat : contract (ticket nat) ] */ ; - DIP { PUSH mutez 0 /* [ mutez : contract (ticket nat) ] */ } - /* [ ticket nat : mutez : contract (ticket nat) ] */ ; - TRANSFER_TOKENS - /* [ operation ] */ ; - NIL operation - /* [ list operation : operation ] */ ; - SWAP - /* [ operation : list operation ] */ ; - CONS - /* [ list operation ] */ ; - UNIT - /* [ unit : list operation ] */ ; - SWAP - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039997.443 units remaining) michelson_test_scripts/opcodes/transfer_amount.tz -{ parameter unit ; - storage mutez ; - code { DROP - /* [] */ ; - AMOUNT - /* [ mutez ] */ ; - NIL operation - /* [ list operation : mutez ] */ ; - PAIR - /* [ pair (list operation) mutez ] */ } } -Well typed (Gas remaining: 1039994.130 units remaining) michelson_test_scripts/opcodes/transfer_tokens.tz -{ parameter (contract unit) ; - storage unit ; - code { CAR - /* [ contract unit ] */ ; - DIP { UNIT /* [ unit ] */ } - /* [ contract unit : unit ] */ ; - PUSH mutez 100000000 - /* [ mutez : contract unit : unit ] */ ; - UNIT - /* [ unit : mutez : contract unit : unit ] */ ; - TRANSFER_TOKENS - /* [ operation : unit ] */ ; - NIL operation - /* [ list operation : operation : unit ] */ ; - SWAP - /* [ operation : list operation : unit ] */ ; - CONS - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.181 units remaining) michelson_test_scripts/opcodes/uncomb.tz -{ parameter (pair nat nat nat) ; - storage nat ; - code { CAR - /* [ pair nat nat nat ] */ ; - UNPAIR 3 - /* [ nat : nat : nat ] */ ; - PUSH nat 100 - /* [ nat : nat : nat : nat ] */ ; - MUL - /* [ nat : nat : nat ] */ ; - SWAP - /* [ nat : nat : nat ] */ ; - PUSH nat 10 - /* [ nat : nat : nat : nat ] */ ; - MUL - /* [ nat : nat : nat ] */ ; - ADD - /* [ nat : nat ] */ ; - ADD - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039904.519 units remaining) michelson_test_scripts/opcodes/unpair.tz -{ parameter (unit :param_unit) ; - storage (unit :u1) ; - code { DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - UNIT - /* [ unit : unit ] */ ; - PAIR - /* [ pair unit unit ] */ ; - UNPAIR - /* [ unit : unit ] */ ; - DROP 2 - /* [] */ ; - UNIT @b - /* [ unit ] */ ; - UNIT @a - /* [ unit : unit ] */ ; - PAIR - /* [ pair unit unit ] */ ; - UNPAIR @c @d - /* [ unit : unit ] */ ; - DROP 2 - /* [] */ ; - UNIT @b - /* [ unit ] */ ; - UNIT @a - /* [ unit : unit ] */ ; - PAIR %@ %@ - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b @a @b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DROP - /* [] */ ; - UNIT @d - /* [ unit ] */ ; - UNIT @c - /* [ unit : unit ] */ ; - PAIR %a %b - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b @a @b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - UNIT - /* [ unit : unit ] */ ; - PAIR %a %b - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR % - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %a %b @a @b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @% %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @b %a %b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - UNIT - /* [ unit : unit ] */ ; - PAIR %a %b @p - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @%% @b - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @a @%% - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @%% @%% - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @% @%% - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR @%% @% - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DROP - /* [] */ ; - UNIT @b - /* [ unit ] */ ; - UNIT @a - /* [ unit : unit ] */ ; - PAIR @c - /* [ pair unit unit ] */ ; - UNPAIR @b @a - /* [ unit : unit ] */ ; - DROP 2 - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.685 units remaining) michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz -{ parameter (unit :param_unit) ; - storage (unit :u1) ; - code { DROP - /* [] */ ; - UNIT @b - /* [ unit ] */ ; - UNIT @a - /* [ unit : unit ] */ ; - PAIR %@ %@ - /* [ pair unit unit ] */ ; - DUP - /* [ pair unit unit : pair unit unit ] */ ; - UNPAIR %c %d - /* [ unit : unit : pair unit unit ] */ ; - DROP 2 - /* [ pair unit unit ] */ ; - DROP - /* [] */ ; - UNIT - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039993.471 units remaining) michelson_test_scripts/opcodes/update_big_map.tz -{ storage (pair (big_map string string) unit) ; - parameter (map string (option string)) ; - code { UNPAPAIR ; - ITER { UNPAIR - /* [ string : option string : big_map string string : unit ] */ ; - UPDATE - /* [ big_map string string : unit ] */ } - /* [ big_map string string : unit ] */ ; - PAIR - /* [ pair (big_map string string) unit ] */ ; - NIL operation - /* [ list operation : pair (big_map string string) unit ] */ ; - PAIR - /* [ pair (list operation) (big_map string string) unit ] */ } } -Well typed (Gas remaining: 1039985.390 units remaining) michelson_test_scripts/opcodes/utxo_read.tz -{ parameter (pair (ticket nat) nat) ; - storage address ; - code { CAR - /* [ pair (ticket nat) nat ] */ ; - UNPAIR - /* [ ticket nat : nat ] */ ; - READ_TICKET - /* [ pair address nat nat : ticket nat : nat ] */ ; - DIP { DROP /* [ nat ] */ } - /* [ pair address nat nat : nat ] */ ; - UNPAIR - /* [ address : pair nat nat : nat ] */ ; - DIP { UNPAIR /* [ nat : nat : nat ] */ } - /* [ address : nat : nat : nat ] */ ; - DIP 2 { ASSERT_CMPEQ } - /* [ address : nat ] */ ; - DIP { PUSH nat 42 /* [ nat : nat ] */ ; ASSERT_CMPEQ } - /* [ address ] */ ; - NIL operation - /* [ list operation : address ] */ ; - PAIR - /* [ pair (list operation) address ] */ } } -Well typed (Gas remaining: 1039966.804 units remaining) michelson_test_scripts/opcodes/utxor.tz -{ parameter (pair address address) ; - storage nat ; - code { UNPAIR - /* [ pair address address : nat ] */ ; - DIP { DUP /* [ nat : nat ] */ } - /* [ pair address address : nat : nat ] */ ; - SWAP - /* [ nat : pair address address : nat ] */ ; - PUSH nat 5 - /* [ nat : nat : pair address address : nat ] */ ; - SWAP - /* [ nat : nat : pair address address : nat ] */ ; - TICKET - /* [ option (ticket nat) : pair address address : nat ] */ ; - ASSERT_SOME ; - PUSH nat 2 - /* [ nat : ticket nat : pair address address : nat ] */ ; - PUSH nat 3 - /* [ nat : nat : ticket nat : pair address address : nat ] */ ; - PAIR - /* [ pair nat nat : ticket nat : pair address address : nat ] */ ; - SWAP - /* [ ticket nat : pair nat nat : pair address address : nat ] */ ; - SPLIT_TICKET - /* [ option (pair (ticket nat) (ticket nat)) : pair address address : nat ] */ ; - ASSERT_SOME ; - UNPAIR - /* [ ticket nat : ticket nat : pair address address : nat ] */ ; - DIP { DIP { DUP - /* [ pair address address : pair address address : nat ] */ ; - CAR - /* [ address : pair address address : nat ] */ ; - CONTRACT - (pair (ticket nat) nat) - /* [ option (contract (pair (ticket nat) nat)) : pair address address : nat ] */ ; - ASSERT_SOME ; - PUSH mutez - 0 - /* [ mutez : contract (pair (ticket nat) nat) : pair address address : nat ] */ } - /* [ ticket nat : mutez : contract (pair (ticket nat) nat) - : pair address address : nat ] */ ; - PUSH nat - 2 - /* [ nat : ticket nat : mutez : contract (pair (ticket nat) nat) - : pair address address : nat ] */ ; - SWAP - /* [ ticket nat : nat : mutez : contract (pair (ticket nat) nat) - : pair address address : nat ] */ ; - PAIR - /* [ pair (ticket nat) nat : mutez : contract (pair (ticket nat) nat) - : pair address address : nat ] */ } - /* [ ticket nat : pair (ticket nat) nat : mutez - : contract (pair (ticket nat) nat) : pair address address : nat ] */ ; - DIP { TRANSFER_TOKENS /* [ operation : pair address address : nat ] */ } - /* [ ticket nat : operation : pair address address : nat ] */ ; - SWAP - /* [ operation : ticket nat : pair address address : nat ] */ ; - DIP { DIP { CDR - /* [ address : nat ] */ ; - CONTRACT - (pair (ticket nat) nat) - /* [ option (contract (pair (ticket nat) nat)) : nat ] */ ; - ASSERT_SOME ; - PUSH mutez 0 - /* [ mutez : contract (pair (ticket nat) nat) : nat ] */ } - /* [ ticket nat : mutez : contract (pair (ticket nat) nat) : nat ] */ ; - PUSH nat - 3 - /* [ nat : ticket nat : mutez : contract (pair (ticket nat) nat) : nat ] */ ; - SWAP - /* [ ticket nat : nat : mutez : contract (pair (ticket nat) nat) : nat ] */ ; - PAIR - /* [ pair (ticket nat) nat : mutez : contract (pair (ticket nat) nat) : nat ] */ } - /* [ operation : pair (ticket nat) nat : mutez - : contract (pair (ticket nat) nat) : nat ] */ ; - DIP { TRANSFER_TOKENS /* [ operation : nat ] */ } - /* [ operation : operation : nat ] */ ; - NIL operation - /* [ list operation : operation : operation : nat ] */ ; - SWAP - /* [ operation : list operation : operation : nat ] */ ; - CONS - /* [ list operation : operation : nat ] */ ; - SWAP - /* [ operation : list operation : nat ] */ ; - CONS - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039994.630 units remaining) michelson_test_scripts/opcodes/view_fib.tz -{ parameter (pair nat address) ; - storage nat ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "fib" nat - /* [ option nat ] */ ; - IF_SOME - { NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } - { FAIL } } } -Well typed (Gas remaining: 1039993.335 units remaining) michelson_test_scripts/opcodes/view_mutual_recursion.tz -{ parameter (pair nat address) ; - storage nat ; - code { CAR - /* [ pair nat address ] */ ; - DUP - /* [ pair nat address : pair nat address ] */ ; - CDR - /* [ address : pair nat address ] */ ; - SWAP - /* [ pair nat address : address ] */ ; - VIEW "is_twenty" nat - /* [ option nat ] */ ; - IF_SOME - { NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } - { FAIL } } } -Well typed (Gas remaining: 1039994.410 units remaining) michelson_test_scripts/opcodes/view_op_add.tz -{ parameter (pair nat address) ; - storage nat ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "add" nat - /* [ option nat ] */ ; - IF_SOME { /* [ nat ] */ } { FAIL } ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039994.390 units remaining) michelson_test_scripts/opcodes/view_op_constant.tz -{ parameter (pair nat address) ; - storage nat ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "const" nat - /* [ option nat ] */ ; - IF_SOME { /* [ nat ] */ } { FAIL } ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039993.949 units remaining) michelson_test_scripts/opcodes/view_op_id.tz -{ parameter (pair nat address) ; - storage (pair nat nat) ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "id" (pair nat nat) - /* [ option (pair nat nat) ] */ ; - IF_SOME { /* [ pair nat nat ] */ } { FAIL } ; - NIL operation - /* [ list operation : pair nat nat ] */ ; - PAIR - /* [ pair (list operation) nat nat ] */ } } -Well typed (Gas remaining: 1039989.259 units remaining) michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz -{ parameter (pair nat address) ; - storage bool ; - code { DROP - /* [] */ ; - PUSH address "tz1SuakBpFdG9b4twyfrSMqZzruxhpMeSrE5" - /* [ address ] */ ; - PUSH nat 0 - /* [ nat : address ] */ ; - VIEW "test" bool - /* [ option bool ] */ ; - IF_SOME - { DROP /* [] */ ; PUSH bool True /* [ bool ] */ } - { PUSH bool False /* [ bool ] */ } ; - NIL operation - /* [ list operation : bool ] */ ; - PAIR - /* [ pair (list operation) bool ] */ } } -Well typed (Gas remaining: 1039993.859 units remaining) michelson_test_scripts/opcodes/view_op_nonexistent_func.tz -{ parameter (pair nat address) ; - storage bool ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "not_exist" bool - /* [ option bool ] */ ; - IF_SOME - { DROP /* [] */ ; PUSH bool True /* [ bool ] */ } - { PUSH bool False /* [ bool ] */ } ; - NIL operation - /* [ list operation : bool ] */ ; - PAIR - /* [ pair (list operation) bool ] */ } } -Well typed (Gas remaining: 1039994.470 units remaining) michelson_test_scripts/opcodes/view_op_test_step_contants.tz -{ parameter address ; - storage (option (pair (pair mutez mutez) (pair (pair address address) address))) ; - code { CAR - /* [ address ] */ ; - UNIT - /* [ unit : address ] */ ; - VIEW "step_constants" - (pair (pair mutez mutez) (pair (pair address address) address)) - /* [ option (pair (pair mutez mutez) (pair address address) address) ] */ ; - NIL operation - /* [ list operation - : option (pair (pair mutez mutez) (pair address address) address) ] */ ; - PAIR - /* [ pair (list operation) (option (pair (pair mutez mutez) (pair address address) address)) ] */ } } -Well typed (Gas remaining: 1039993.919 units remaining) michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz -{ parameter (pair int address) ; - storage nat ; - code { CAR - /* [ pair int address ] */ ; - UNPAIR - /* [ int : address ] */ ; - VIEW "add" nat - /* [ option nat ] */ ; - IF_SOME { DROP /* [] */ ; PUSH nat 1 /* [ nat ] */ } { PUSH nat 0 /* [ nat ] */ } ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } } -Well typed (Gas remaining: 1039993.919 units remaining) michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz -{ parameter (pair nat address) ; - storage bool ; - code { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - VIEW "add" bool - /* [ option bool ] */ ; - IF_SOME - { DROP /* [] */ ; PUSH bool True /* [ bool ] */ } - { PUSH bool False /* [ bool ] */ } ; - NIL operation - /* [ list operation : bool ] */ ; - PAIR - /* [ pair (list operation) bool ] */ } } -Well typed (Gas remaining: 1039988.440 units remaining) michelson_test_scripts/opcodes/view_rec.tz -{ parameter unit ; - storage unit ; - view "loop" - address - never - { CAR - /* [ address ] */ ; - DUP - /* [ address : address ] */ ; - VIEW "loop" never - /* [ option never ] */ ; - ASSERT_SOME } ; - code { CDR - /* [ unit ] */ ; - SELF - /* [ contract unit : unit ] */ ; - ADDRESS - /* [ address : unit ] */ ; - DUP - /* [ address : address : unit ] */ ; - VIEW "loop" never - /* [ option never : unit ] */ ; - ASSERT_SOME ; - DROP - /* [ unit ] */ ; - NIL operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } -Well typed (Gas remaining: 1039947.179 units remaining) michelson_test_scripts/opcodes/view_toplevel_lib.tz -{ parameter nat ; - storage nat ; - code { CAR - /* [ nat ] */ ; - NIL operation - /* [ list operation : nat ] */ ; - PAIR - /* [ pair (list operation) nat ] */ } ; - view "add" nat nat { UNPAIR /* [ nat : nat ] */ ; ADD /* [ nat ] */ } ; - view "id" nat (pair nat nat) { /* [ pair nat nat ] */ } ; - view "test_failwith" nat (pair nat nat) { FAILWITH /* [] */ } ; - view "step_constants" - unit - (pair (pair mutez mutez) (pair (pair address address) address)) - { DROP - /* [] */ ; - SOURCE - /* [ address ] */ ; - SENDER - /* [ address : address ] */ ; - SELF_ADDRESS - /* [ address : address : address ] */ ; - PAIR - /* [ pair address address : address ] */ ; - PAIR - /* [ pair (pair address address) address ] */ ; - BALANCE - /* [ mutez : pair (pair address address) address ] */ ; - AMOUNT - /* [ mutez : mutez : pair (pair address address) address ] */ ; - PAIR - /* [ pair mutez mutez : pair (pair address address) address ] */ ; - PAIR - /* [ pair (pair mutez mutez) (pair address address) address ] */ } ; - view "succ" - (pair nat address) - nat - { CAR - /* [ pair nat address ] */ ; - UNPAIR - /* [ nat : address ] */ ; - PUSH nat 1 - /* [ nat : nat : address ] */ ; - ADD - /* [ nat : address ] */ ; - PAIR - /* [ pair nat address ] */ ; - DUP - /* [ pair nat address : pair nat address ] */ ; - CDR - /* [ address : pair nat address ] */ ; - SWAP - /* [ pair nat address : address ] */ ; - VIEW "is_twenty" nat - /* [ option nat ] */ ; - ASSERT_SOME } ; - view "is_twenty" - (pair nat address) - nat - { CAR - /* [ pair nat address ] */ ; - DUP - /* [ pair nat address : pair nat address ] */ ; - CAR - /* [ nat : pair nat address ] */ ; - PUSH nat 20 - /* [ nat : nat : pair nat address ] */ ; - COMPARE - /* [ int : pair nat address ] */ ; - EQ - /* [ bool : pair nat address ] */ ; - IF { CAR /* [ nat ] */ } - { DUP - /* [ pair nat address : pair nat address ] */ ; - CDR - /* [ address : pair nat address ] */ ; - SWAP - /* [ pair nat address : address ] */ ; - VIEW "succ" nat - /* [ option nat ] */ ; - ASSERT_SOME } } ; - view "fib" - nat - nat - { CAR - /* [ nat ] */ ; - DUP - /* [ nat : nat ] */ ; - PUSH nat 0 - /* [ nat : nat : nat ] */ ; - COMPARE - /* [ int : nat ] */ ; - EQ - /* [ bool : nat ] */ ; - IF { /* [ nat ] */ } - { DUP - /* [ nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat ] */ ; - COMPARE - /* [ int : nat ] */ ; - EQ - /* [ bool : nat ] */ ; - IF { /* [ nat ] */ } - { DUP - /* [ nat : nat ] */ ; - PUSH nat 1 - /* [ nat : nat : nat ] */ ; - SWAP - /* [ nat : nat : nat ] */ ; - SUB - /* [ int : nat ] */ ; - ABS - /* [ nat : nat ] */ ; - SELF_ADDRESS - /* [ address : nat : nat ] */ ; - SWAP - /* [ nat : address : nat ] */ ; - VIEW "fib" nat - /* [ option nat : nat ] */ ; - IF_SOME - { SWAP - /* [ nat : nat ] */ ; - PUSH nat 2 - /* [ nat : nat : nat ] */ ; - SWAP - /* [ nat : nat : nat ] */ ; - SUB - /* [ int : nat ] */ ; - ABS - /* [ nat : nat ] */ ; - SELF_ADDRESS - /* [ address : nat : nat ] */ ; - SWAP - /* [ nat : address : nat ] */ ; - VIEW "fib" nat - /* [ option nat : nat ] */ ; - IF_SOME { ADD /* [ nat ] */ } { FAIL } } - { FAIL } } } } } -Well typed (Gas remaining: 1039995.193 units remaining) michelson_test_scripts/opcodes/voting_power.tz -{ parameter key ; - storage (pair nat nat) ; - code { CAR - /* [ key ] */ ; - HASH_KEY - /* [ key_hash ] */ ; - VOTING_POWER - /* [ nat ] */ ; - DIP { TOTAL_VOTING_POWER /* [ nat ] */ } - /* [ nat : nat ] */ ; - PAIR - /* [ pair nat nat ] */ ; - NIL operation - /* [ list operation : pair nat nat ] */ ; - PAIR - /* [ pair (list operation) nat nat ] */ } } -Well typed (Gas remaining: 1039992.584 units remaining) michelson_test_scripts/opcodes/xor.tz -{ parameter (or (pair bool bool) (pair nat nat)) ; - storage (option (or bool nat)) ; - code { CAR - /* [ or (pair bool bool) (pair nat nat) ] */ ; - IF_LEFT - { UNPAIR /* [ bool : bool ] */ ; XOR /* [ bool ] */ ; LEFT nat /* [ or bool nat ] */ } - { UNPAIR /* [ nat : nat ] */ ; XOR /* [ nat ] */ ; RIGHT bool /* [ or bool nat ] */ } ; - SOME - /* [ option (or bool nat) ] */ ; - NIL operation - /* [ list operation : option (or bool nat) ] */ ; - PAIR - /* [ pair (list operation) (option (or bool nat)) ] */ } } -Well typed (Gas remaining: 1039978.916 units remaining) michelson_test_scripts/opcodes/xor_bytes_016.tz -{ parameter unit ; - storage unit ; - code { DROP - /* [] */ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x06 - /* [ bytes : bytes ] */ ; - XOR - /* [ bytes ] */ ; - PUSH bytes 0x03 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x0005 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - XOR - /* [ bytes ] */ ; - PUSH bytes 0x0103 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - PUSH bytes 0x05 - /* [ bytes ] */ ; - PUSH bytes 0x0106 - /* [ bytes : bytes ] */ ; - XOR - /* [ bytes ] */ ; - PUSH bytes 0x0103 - /* [ bytes : bytes ] */ ; - ASSERT_CMPEQ ; - UNIT - /* [ unit ] */ ; - NIL @noop operation - /* [ list operation : unit ] */ ; - PAIR - /* [ pair (list operation) unit ] */ } } diff --git a/tezt/tests/expected/create_contract.ml/Nairobi- Create contract.out b/tezt/tests/expected/create_contract.ml/Nairobi- Create contract.out deleted file mode 100644 index 590266bef812..000000000000 --- a/tezt/tests/expected/create_contract.ml/Nairobi- Create contract.out +++ /dev/null @@ -1,109 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract originate_contract transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/originate_contract.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 599.777 units (will add 100 for safety) -Estimated storage: 350 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000393 - Expected counter: 1 - Gas limit: 700 - Storage limit: 370 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000393 - payload fees(the block proposer) ....... +ꜩ0.000393 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ200 - Script: - { parameter unit ; - storage unit ; - code { DROP ; - UNIT ; - AMOUNT ; - NONE key_hash ; - CREATE_CONTRACT - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } ; - DIP { DROP ; PUSH unit Unit ; NIL operation } ; - CONS ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 93 bytes - Paid storage size diff: 93 bytes - Consumed gas: 599.743 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02325 - storage fees ........................... +ꜩ0.02325 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ200 - [CONTRACT_HASH] ... +ꜩ200 - -New contract [CONTRACT_HASH] originated. -Contract memorized as originate_contract. - -./octez-client --mode mockup --wait none transfer 1 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg Unit -Node is bootstrapped. -Estimated gas: 1794.177 units (will add 100 for safety) -Estimated storage: 295 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000441 - Expected counter: 1 - Gas limit: 1895 - Storage limit: 315 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000441 - payload fees(the block proposer) ....... +ꜩ0.000441 - Transaction: - Amount: ꜩ1 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: Unit - Storage size: 93 bytes - Consumed gas: 1289.501 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - Internal operations: - Internal Origination: - From: [CONTRACT_HASH] - Credit: ꜩ1 - Script: - { parameter unit ; storage unit ; code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 38 bytes - Paid storage size diff: 38 bytes - Consumed gas: 505.287 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0095 - storage fees ........................... +ꜩ0.0095 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [CONTRACT_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -New contract [CONTRACT_HASH] originated. diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test Coordinator-s post preimage).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test Coordinator-s post preimage).out deleted file mode 100644 index bb7224052703..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test Coordinator-s post preimage).out +++ /dev/null @@ -1,7 +0,0 @@ -RPC_REQUEST_URI: POST $SCHEME://$HOST:$PORT/v0/preimage -RPC_REQUEST_HEADER: Content-Type: application/json - - -RPC_REQUEST_BODY: "74657374" -RPC_RESPONSE_BODY: "00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6" - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-certificate).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-certificate).out deleted file mode 100644 index e4e77754f770..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-certificate).out +++ /dev/null @@ -1,6 +0,0 @@ -RPC_REQUEST_URI: GET $SCHEME://$HOST:$PORT/v0/certificates/00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6 -RPC_REQUEST_HEADER: Content-Type: application/json - - -RPC_RESPONSE_BODY: {"version":0,"root_hash":"00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6","aggregate_signature":"[AGGREGATED_SIG]","witnesses":"1"} - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-missing_page).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-missing_page).out deleted file mode 100644 index 11852713b787..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-missing_page).out +++ /dev/null @@ -1,6 +0,0 @@ -RPC_REQUEST_URI: GET $SCHEME://$HOST:$PORT/v0/missing_page/00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6 -RPC_REQUEST_HEADER: Content-Type: application/json - - -RPC_RESPONSE_BODY: "000000000474657374" - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-certificate).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-certificate).out deleted file mode 100644 index 903c9d0a2847..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-certificate).out +++ /dev/null @@ -1,6 +0,0 @@ -RPC_REQUEST_URI: GET $SCHEME://$HOST:$PORT/v0/monitor/certificate/00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6 -RPC_REQUEST_HEADER: Content-Type: application/json - - -{"version":0,"root_hash":"00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6","aggregate_signature":"[AGGREGATED_SIG]","witnesses":"1"} - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-root_hashes).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-root_hashes).out deleted file mode 100644 index 4870365dfa08..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-monitor-root_hashes).out +++ /dev/null @@ -1,4 +0,0 @@ -RPC_REQUEST_URI: GET $SCHEME://$HOST:$PORT/v0/monitor/root_hashes -RPC_REQUEST_HEADER: Content-Type: application/json - - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-preimage).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-preimage).out deleted file mode 100644 index cf7625cfc1d6..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test GET v0-preimage).out +++ /dev/null @@ -1,6 +0,0 @@ -RPC_REQUEST_URI: GET $SCHEME://$HOST:$PORT/v0/preimage/00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6 -RPC_REQUEST_HEADER: Content-Type: application/json - - -RPC_RESPONSE_BODY: "000000000474657374" - diff --git a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test PUT v0-dac_member_signature).out b/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test PUT v0-dac_member_signature).out deleted file mode 100644 index 95ebde52ff78..000000000000 --- a/tezt/tests/expected/dac.ml/Nairobi- Testing Full DAC infrastructure (test PUT v0-dac_member_signature).out +++ /dev/null @@ -1,11 +0,0 @@ -RPC_REQUEST_URI: PUT $SCHEME://$HOST:$PORT/v0/dac_member_signature -RPC_REQUEST_HEADER: Content-Type: application/json - - -RPC_REQUEST_BODY: { - "root_hash": "00a3703854279d2f377d689163d1ec911a840d84b56c4c6f6cafdf0610394df7c6", - "signer_pkh": "[PUBLIC_KEY_HASH]", - "signature": "[AGGREGATED_SIG]" -} -RPC_RESPONSE_BODY: {} - diff --git a/tezt/tests/expected/deposits_limit.ml/Nairobi- set deposits limit.out b/tezt/tests/expected/deposits_limit.ml/Nairobi- set deposits limit.out deleted file mode 100644 index 8ac64a759156..000000000000 --- a/tezt/tests/expected/deposits_limit.ml/Nairobi- set deposits limit.out +++ /dev/null @@ -1,26 +0,0 @@ -Node is bootstrapped. -Estimated gas: 168.052 units (will add 0 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is 'oogPg9fm3Wo8Fub69ehKvyhmefv442MSvvKME7awo3zvZVAsuTo' -NOT waiting for the operation to be included. -Use command - octez-client wait for oogPg9fm3Wo8Fub69ehKvyhmefv442MSvvKME7awo3zvZVAsuTo to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisf79b5d1CoW2 -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000247 - Expected counter: 1 - Gas limit: 169 - Storage limit: 0 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000247 - payload fees(the block proposer) ....... +ꜩ0.000247 - Set deposits limit: - Delegate: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Limit: 1000 - This deposits limit modification was successfully applied - Consumed gas: 167.986 - - diff --git a/tezt/tests/expected/deposits_limit.ml/Nairobi- unset deposits limit.out b/tezt/tests/expected/deposits_limit.ml/Nairobi- unset deposits limit.out deleted file mode 100644 index fc4436f54195..000000000000 --- a/tezt/tests/expected/deposits_limit.ml/Nairobi- unset deposits limit.out +++ /dev/null @@ -1,26 +0,0 @@ -Node is bootstrapped. -Estimated gas: 167.886 units (will add 0 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is 'oo1PJ41t8u2VYdoeFVgREH9LKKtASE141H3wWRmKRbuBcshW3hR' -NOT waiting for the operation to be included. -Use command - octez-client wait for oo1PJ41t8u2VYdoeFVgREH9LKKtASE141H3wWRmKRbuBcshW3hR to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisf79b5d1CoW2 -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Fee to the baker: ꜩ0.000242 - Expected counter: 1 - Gas limit: 168 - Storage limit: 0 bytes - Balance updates: - tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx ... -ꜩ0.000242 - payload fees(the block proposer) ....... +ꜩ0.000242 - Set deposits limit: - Delegate: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx - Unlimited deposits - This deposits limit modification was successfully applied - Consumed gas: 167.820 - - diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.out deleted file mode 100644 index 2b2c0ebb5c9d..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-codec encode 017-PtNairob.block_header from '{ - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "seed_nonce_hash": "nceUFoeQDgkJCmzdMWh19ZjBYqQD3N9fe6bXQ1ZsUKKvMn7iun5Z3", - "liquidity_baking_toggle_vote": "off", - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 -}' -00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d5580166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.block_header from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d5580166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "level": 1331, "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "seed_nonce_hash": "nceUFoeQDgkJCmzdMWh19ZjBYqQD3N9fe6bXQ1ZsUKKvMn7iun5Z3", - "liquidity_baking_toggle_vote": "off", - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.raw.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.raw.out deleted file mode 100644 index d006f9c33b39..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.raw.out +++ /dev/null @@ -1,26 +0,0 @@ - -./octez-codec encode 017-PtNairob.block_header.raw from '{ - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "protocol_data": "521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" -}' -00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.block_header.raw from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "level": 1331, "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "protocol_data": - "521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.unsigned.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.unsigned.out deleted file mode 100644 index d5780fc512f8..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- block_header.unsigned.out +++ /dev/null @@ -1,32 +0,0 @@ - -./octez-codec encode 017-PtNairob.block_header.unsigned from '{ - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "seed_nonce_hash": "nceUFoeQDgkJCmzdMWh19ZjBYqQD3N9fe6bXQ1ZsUKKvMn7iun5Z3", - "liquidity_baking_toggle_vote": "off", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 -}' -00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55801 - -./octez-codec decode 017-PtNairob.block_header.unsigned from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55801 -{ "level": 1331, "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "seed_nonce_hash": "nceUFoeQDgkJCmzdMWh19ZjBYqQD3N9fe6bXQ1ZsUKKvMn7iun5Z3", - "liquidity_baking_toggle_vote": "off" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- contract.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- contract.out deleted file mode 100644 index 53bdc6514f40..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- contract.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.contract from '"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx"' -000002298c03ed7d454a101eb7022bc95f7e5f41ac78 - -./octez-codec decode 017-PtNairob.contract from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78 -"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - -./octez-codec encode 017-PtNairob.contract from '"KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat"' -0138560805b4c8d7b7fbbafad5c59dbfa3878ca70500 - -./octez-codec decode 017-PtNairob.contract from 0138560805b4c8d7b7fbbafad5c59dbfa3878ca70500 -"KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- cycle.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- cycle.out deleted file mode 100644 index 0663373678e2..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- cycle.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.cycle from 2147483647 -7fffffff - -./octez-codec decode 017-PtNairob.cycle from 7fffffff -2147483647 - -./octez-codec encode 017-PtNairob.cycle from 0 -00000000 - -./octez-codec decode 017-PtNairob.cycle from 00000000 -0 diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- fitness.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- fitness.out deleted file mode 100644 index 450f294a1fb0..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- fitness.out +++ /dev/null @@ -1,11 +0,0 @@ - -./octez-codec encode 017-PtNairob.fitness from '{ - "level": 1, - "locked_round": 1, - "predecessor_round": 1, - "round": 2 -}' -0000000101000000010000000100000002 - -./octez-codec decode 017-PtNairob.fitness from 0000000101000000010000000100000002 -{ "level": 1, "locked_round": 1, "predecessor_round": 1, "round": 2 } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.cost.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.cost.out deleted file mode 100644 index 298fed802566..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.cost.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.gas.cost from '"8920392083423078"' -a6fd9d9694c3d81f - -./octez-codec decode 017-PtNairob.gas.cost from a6fd9d9694c3d81f -"8920392083423078" - -./octez-codec encode 017-PtNairob.gas.cost from '"0"' -00 - -./octez-codec decode 017-PtNairob.gas.cost from 00 -"0" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.out deleted file mode 100644 index 3f5ab75a6222..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- gas.out +++ /dev/null @@ -1,18 +0,0 @@ - -./octez-codec encode 017-PtNairob.gas from '"1238"' -009613 - -./octez-codec decode 017-PtNairob.gas from 009613 -"1238" - -./octez-codec encode 017-PtNairob.gas from '"unaccounted"' -01 - -./octez-codec decode 017-PtNairob.gas from 01 -"unaccounted" - -./octez-codec encode 017-PtNairob.gas from '"0"' -0000 - -./octez-codec decode 017-PtNairob.gas from 0000 -"0" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- level.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- level.out deleted file mode 100644 index a658e30128ea..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- level.out +++ /dev/null @@ -1,13 +0,0 @@ - -./octez-codec encode 017-PtNairob.level from '{ - "level": 1331, - "level_position": 2147483647, - "cycle": 300, - "cycle_position": 600, - "expected_commitment": true -}' -000005337fffffff0000012c00000258ff - -./octez-codec decode 017-PtNairob.level from 000005337fffffff0000012c00000258ff -{ "level": 1331, "level_position": 2147483647, "cycle": 300, - "cycle_position": 600, "expected_commitment": true } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- nonce.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- nonce.out deleted file mode 100644 index 6c0b4d53e535..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- nonce.out +++ /dev/null @@ -1,6 +0,0 @@ - -./octez-codec encode 017-PtNairob.nonce from '"0000000000000000000000000000000000000000000000000000000000000000"' -0000000000000000000000000000000000000000000000000000000000000000 - -./octez-codec decode 017-PtNairob.nonce from 0000000000000000000000000000000000000000000000000000000000000000 -"0000000000000000000000000000000000000000000000000000000000000000" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.internal.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.internal.out deleted file mode 100644 index 6f8d9631fa35..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.internal.out +++ /dev/null @@ -1,140 +0,0 @@ - -./octez-codec encode 017-PtNairob.operation.internal from '{ - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "nonce": 0, - "kind": "delegation" -}' -000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000300 - -./octez-codec decode 017-PtNairob.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000300 -{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, - "kind": "delegation" } - -./octez-codec encode 017-PtNairob.operation.internal from '{ - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "nonce": 0, - "kind": "delegation", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" -}' -000002298c03ed7d454a101eb7022bc95f7e5f41ac78000003ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 - -./octez-codec decode 017-PtNairob.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000003ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 -{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, - "kind": "delegation", "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } - -./octez-codec encode 017-PtNairob.operation.internal from '{ - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "nonce": 0, - "kind": "origination", - "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": { - "code": [ - { - "prim": "parameter", - "args": [ - { - "prim": "string" - } - ] - }, - { - "prim": "storage", - "args": [ - { - "prim": "option", - "args": [ - { - "prim": "string" - } - ] - } - ] - }, - { - "prim": "code", - "args": [ - [ - { - "prim": "CAR" - }, - { - "prim": "SOME" - }, - { - "prim": "NIL", - "args": [ - { - "prim": "operation" - } - ] - }, - { - "prim": "PAIR" - } - ] - ] - } - ], - "storage": [ - { - "string": "test" - } - ] - } -}' -000002298c03ed7d454a101eb7022bc95f7e5f41ac78000002af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 - -./octez-codec decode 017-PtNairob.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000002af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 -{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, - "kind": "origination", "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": [ { "string": "test" } ] } } - -./octez-codec encode 017-PtNairob.operation.internal from '{ - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "nonce": 3, - "kind": "transaction", - "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" -}' -000002298c03ed7d454a101eb7022bc95f7e5f41ac780003019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 - -./octez-codec decode 017-PtNairob.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac780003019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 -{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 3, - "kind": "transaction", "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } - -./octez-codec encode 017-PtNairob.operation.internal from '{ - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "nonce": 0, - "kind": "transaction", - "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": { - "entrypoint": "action", - "value": [ - { - "prim": "UNIT" - } - ] - } -}' -000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f - -./octez-codec decode 017-PtNairob.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f -{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, - "kind": "transaction", "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": { "entrypoint": "action", "value": [ { "prim": "UNIT" } ] } } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.out deleted file mode 100644 index 2b57787d1178..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.out +++ /dev/null @@ -1,531 +0,0 @@ - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "activate_account", - "pkh": "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv", - "secret": "41f98b15efc63fa893d61d7d6eee4a2ce9427ac4" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "activate_account", - "pkh": "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv", - "secret": "41f98b15efc63fa893d61d7d6eee4a2ce9427ac4" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "ballot", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposal": "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "ballot": "yay" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "ballot", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposal": "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "ballot": "yay" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4010066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4010066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "double_baking_evidence", - "bh1": { - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 4, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 - }, - "bh2": { - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 4, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 - } - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "double_baking_evidence", - "bh1": - { "level": 1331, "proto": 1, - "predecessor": - "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 4, - "operations_hash": - "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" }, - "bh2": - { "level": 1331, "proto": 1, - "predecessor": - "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 4, - "operations_hash": - "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "double_endorsement_evidence", - "op1": { - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - }, - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" - }, - "op2": { - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - }, - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" - } - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8020000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8020000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "double_endorsement_evidence", - "op1": - { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": - { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" }, - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" }, - "op2": - { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": - { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" }, - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "origination", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": { - "code": [ - { - "prim": "parameter", - "args": [ - { - "prim": "string" - } - ] - }, - { - "prim": "storage", - "args": [ - { - "prim": "option", - "args": [ - { - "prim": "string" - } - ] - } - ] - }, - { - "prim": "code", - "args": [ - [ - { - "prim": "CAR" - }, - { - "prim": "SOME" - }, - { - "prim": "NIL", - "args": [ - { - "prim": "operation" - } - ] - }, - { - "prim": "PAIR" - } - ] - ] - } - ], - "storage": [ - { - "string": "test" - } - ] - } - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e020000000901000000047465737466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e020000000901000000047465737466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "origination", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": [ { "string": "test" } ] } } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "proposals", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposals": [ - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp" - ] - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "proposals", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "period": 719, - "proposals": - [ "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp" ] } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "reveal", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "public_key": "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "reveal", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", - "public_key": - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "seed_nonce_revelation", - "level": 1331, - "nonce": "0000000000000000000000000000000000000000000000000000000000000000" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80100000533000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80100000533000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "seed_nonce_revelation", "level": 1331, - "nonce": - "0000000000000000000000000000000000000000000000000000000000000000" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac780066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac780066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } - -./octez-codec encode 017-PtNairob.operation from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": { - "entrypoint": "action", - "value": [ - { - "prim": "UNIT" - } - ] - } - } - ], - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": - { "entrypoint": "action", "value": [ { "prim": "UNIT" } ] } } ], - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.raw.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.raw.out deleted file mode 100644 index 4b45a3d49709..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.raw.out +++ /dev/null @@ -1,11 +0,0 @@ - -./octez-codec encode 017-PtNairob.operation.raw from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "data": "000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation.raw from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "data": - "000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.unsigned.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.unsigned.out deleted file mode 100644 index 400c143d9054..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- operation.unsigned.out +++ /dev/null @@ -1,468 +0,0 @@ - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "activate_account", - "pkh": "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv", - "secret": "41f98b15efc63fa893d61d7d6eee4a2ce9427ac4" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac4 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac4 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "activate_account", - "pkh": "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv", - "secret": "41f98b15efc63fa893d61d7d6eee4a2ce9427ac4" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "ballot", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposal": "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "ballot": "yay" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c00 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c00 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "ballot", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposal": "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "ballot": "yay" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40100 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40100 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "delegation", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "double_baking_evidence", - "bh1": { - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 4, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 - }, - "bh2": { - "level": 1331, - "proto": 1, - "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", - "validation_pass": 4, - "operations_hash": "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ - "01", - "000000000000000a" - ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ", - "payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0 - } - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "double_baking_evidence", - "bh1": - { "level": 1331, "proto": 1, - "predecessor": - "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 4, - "operations_hash": - "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" }, - "bh2": - { "level": 1331, "proto": 1, - "predecessor": - "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 4, - "operations_hash": - "LLoZqBDX1E2ADRXbmwYo8VtMNeHG6Ygzmm4Zqv97i91UPBQHy9Vq3", - "fitness": [ "01", "000000000000000a" ], - "context": "CoVDyf9y9gHfAkPWofBJffo4X4bWjmehH2LeVonDcCKKzyQYwqdk", - "payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "payload_round": 0, "proof_of_work_nonce": "101895ca00000000", - "liquidity_baking_toggle_vote": "off", - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "double_endorsement_evidence", - "op1": { - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - }, - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" - }, - "op2": { - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - }, - "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" - } - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8020000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8020000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "double_endorsement_evidence", - "op1": - { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": - { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" }, - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" }, - "op2": - { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "operations": - { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" }, - "signature": - "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "endorsement", - "level": 1331, - "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", - "round": 0, - "slot": 0 - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a815000000000533000000000000000000000000000000000000000000000000000000000000000000000000 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a815000000000533000000000000000000000000000000000000000000000000000000000000000000000000 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "endorsement", "slot": 0, "level": 1331, "round": 0, - "block_payload_hash": - "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "origination", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": { - "code": [ - { - "prim": "parameter", - "args": [ - { - "prim": "string" - } - ] - }, - { - "prim": "storage", - "args": [ - { - "prim": "option", - "args": [ - { - "prim": "string" - } - ] - } - ] - }, - { - "prim": "code", - "args": [ - [ - { - "prim": "CAR" - }, - { - "prim": "SOME" - }, - { - "prim": "NIL", - "args": [ - { - "prim": "operation" - } - ] - }, - { - "prim": "PAIR" - } - ] - ] - } - ], - "storage": [ - { - "string": "test" - } - ] - } - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "origination", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "balance": "84143", - "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "script": - { "code": - [ { "prim": "parameter", "args": [ { "prim": "string" } ] }, - { "prim": "storage", - "args": - [ { "prim": "option", "args": [ { "prim": "string" } ] } ] }, - { "prim": "code", - "args": - [ [ { "prim": "CAR" }, { "prim": "SOME" }, - { "prim": "NIL", - "args": [ { "prim": "operation" } ] }, - { "prim": "PAIR" } ] ] } ], - "storage": [ { "string": "test" } ] } } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "proposals", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "period": 719, - "proposals": [ - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp" - ] - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "proposals", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "period": 719, - "proposals": - [ "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", - "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp" ] } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "reveal", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "public_key": "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "reveal", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", - "public_key": - "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "seed_nonce_revelation", - "level": 1331, - "nonce": "0000000000000000000000000000000000000000000000000000000000000000" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a801000005330000000000000000000000000000000000000000000000000000000000000000 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a801000005330000000000000000000000000000000000000000000000000000000000000000 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "seed_nonce_revelation", "level": 1331, - "nonce": - "0000000000000000000000000000000000000000000000000000000000000000" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "amount": "407", - "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ] } - -./octez-codec encode 017-PtNairob.operation.unsigned from '{ - "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": [ - { - "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "fee": "33", - "counter": "732", - "gas_limit": "9451117", - "storage_limit": "57024931117", - "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": { - "entrypoint": "action", - "value": [ - { - "prim": "UNIT" - } - ] - } - } - ] -}' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f - -./octez-codec decode 017-PtNairob.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f -{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", - "contents": - [ { "kind": "transaction", - "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "fee": "33", - "counter": "732", "gas_limit": "9451117", - "storage_limit": "57024931117", "amount": "407", - "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", - "parameters": - { "entrypoint": "action", "value": [ { "prim": "UNIT" } ] } } ] } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- period.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- period.out deleted file mode 100644 index c7ba464d6439..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- period.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.period from '"2789"' -0000000000000ae5 - -./octez-codec decode 017-PtNairob.period from 0000000000000ae5 -"2789" - -./octez-codec encode 017-PtNairob.period from '"0"' -0000000000000000 - -./octez-codec decode 017-PtNairob.period from 0000000000000000 -"0" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- raw_level.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- raw_level.out deleted file mode 100644 index e825ef9ce628..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- raw_level.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.raw_level from 2147483647 -7fffffff - -./octez-codec decode 017-PtNairob.raw_level from 7fffffff -2147483647 - -./octez-codec encode 017-PtNairob.raw_level from 0 -00000000 - -./octez-codec decode 017-PtNairob.raw_level from 00000000 -0 diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- seed.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- seed.out deleted file mode 100644 index 96770f3ed7d4..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- seed.out +++ /dev/null @@ -1,6 +0,0 @@ - -./octez-codec encode 017-PtNairob.seed from '"0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8"' -0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8 - -./octez-codec decode 017-PtNairob.seed from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8 -"0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- tez.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- tez.out deleted file mode 100644 index 1872c53a989b..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- tez.out +++ /dev/null @@ -1,12 +0,0 @@ - -./octez-codec encode 017-PtNairob.tez from '"7322135"' -97f4be03 - -./octez-codec decode 017-PtNairob.tez from 97f4be03 -"7322135" - -./octez-codec encode 017-PtNairob.tez from '"0"' -00 - -./octez-codec decode 017-PtNairob.tez from 00 -"0" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- timestamp.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- timestamp.out deleted file mode 100644 index 0c95a7ab6748..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- timestamp.out +++ /dev/null @@ -1,6 +0,0 @@ - -./octez-codec encode 017-PtNairob.timestamp from '"2020-04-20T16:19:59Z"' -000000005e9dcbaf - -./octez-codec decode 017-PtNairob.timestamp from 000000005e9dcbaf -"2020-04-20T16:19:59Z" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballot.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballot.out deleted file mode 100644 index c670a6a66259..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballot.out +++ /dev/null @@ -1,18 +0,0 @@ - -./octez-codec encode 017-PtNairob.vote.ballot from '"nay"' -01 - -./octez-codec decode 017-PtNairob.vote.ballot from 01 -"nay" - -./octez-codec encode 017-PtNairob.vote.ballot from '"pass"' -02 - -./octez-codec decode 017-PtNairob.vote.ballot from 02 -"pass" - -./octez-codec encode 017-PtNairob.vote.ballot from '"yay"' -00 - -./octez-codec decode 017-PtNairob.vote.ballot from 00 -"yay" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballots.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballots.out deleted file mode 100644 index 5445508e6080..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.ballots.out +++ /dev/null @@ -1,10 +0,0 @@ - -./octez-codec encode 017-PtNairob.vote.ballots from '{ - "yay": "2147483647", - "nay": "0", - "pass": "455" -}' -000000007fffffff000000000000000000000000000001c7 - -./octez-codec decode 017-PtNairob.vote.ballots from 000000007fffffff000000000000000000000000000001c7 -{ "yay": "2147483647", "nay": "0", "pass": "455" } diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.listings.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.listings.out deleted file mode 100644 index d4944c50e4b2..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- vote.listings.out +++ /dev/null @@ -1,16 +0,0 @@ - -./octez-codec encode 017-PtNairob.vote.listings from '[ - { - "pkh": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", - "voting_power": "20115" - }, - { - "pkh": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "voting_power": "9000" - } -]' -0000003a0002298c03ed7d454a101eb7022bc95f7e5f41ac780000000000004e9300e7670f32038107a59a2b9cfefae36ea21f5aa63c0000000000002328 - -./octez-codec decode 017-PtNairob.vote.listings from 0000003a0002298c03ed7d454a101eb7022bc95f7e5f41ac780000000000004e9300e7670f32038107a59a2b9cfefae36ea21f5aa63c0000000000002328 -[ { "pkh": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "voting_power": "20115" }, - { "pkh": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", "voting_power": "9000" } ] diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.kind.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.kind.out deleted file mode 100644 index b07c8c35d492..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.kind.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-codec encode 017-PtNairob.voting_period.kind from '"promotion"' -03 - -./octez-codec decode 017-PtNairob.voting_period.kind from 03 -"promotion" - -./octez-codec encode 017-PtNairob.voting_period.kind from '"proposal"' -00 - -./octez-codec decode 017-PtNairob.voting_period.kind from 00 -"proposal" - -./octez-codec encode 017-PtNairob.voting_period.kind from '"exploration"' -01 - -./octez-codec decode 017-PtNairob.voting_period.kind from 01 -"exploration" - -./octez-codec encode 017-PtNairob.voting_period.kind from '"cooldown"' -02 - -./octez-codec decode 017-PtNairob.voting_period.kind from 02 -"cooldown" diff --git a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.out b/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.out deleted file mode 100644 index 7acdb3c2a058..000000000000 --- a/tezt/tests/expected/encoding.ml/Nairobi- protocol encoding regression test- voting_period.out +++ /dev/null @@ -1,20 +0,0 @@ - -./octez-codec encode 017-PtNairob.voting_period from '{ - "start_position": 1159026, - "kind": "proposal", - "index": 0 -}' -00000000000011af72 - -./octez-codec decode 017-PtNairob.voting_period from 00000000000011af72 -{ "index": 0, "kind": "proposal", "start_position": 1159026 } - -./octez-codec encode 017-PtNairob.voting_period from '{ - "start_position": 0, - "kind": "proposal", - "index": 0 -}' -000000000000000000 - -./octez-codec decode 017-PtNairob.voting_period from 000000000000000000 -{ "index": 0, "kind": "proposal", "start_position": 0 } diff --git a/tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (bad).out b/tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (bad).out deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (good).out b/tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (good).out deleted file mode 100644 index 6ca993cff8ec..000000000000 --- a/tezt/tests/expected/hash_data.ml/Nairobi- hash data ... of type ... (good).out +++ /dev/null @@ -1,594 +0,0 @@ - -./octez-client --mode mockup hash data -92233720368547758089223372036854775807 of type int -Raw packed data: 0x0500ffffffffffffffffff8180c09e91c191c79502 -Script-expression-ID-Hash: expruG5Q9N4beaRnBNDX9c1rQ1QUGRyPgQyTpwJedPhTpxXfTkguXn -Raw Script-expression-ID-Hash: 0x6216452f655bf0e4ba4f86c58a7bface77c01dc88e9db83102212e1fe3d50ca7 -Ledger Blake2b hash: 7bteidcLhhSczK6rV7WZQMFW1S7jEApuMPPEUvZDk2B8 -Raw Sha256 hash: 0x19392ac75f657ecb477bf79085a4490f1be98a31c03434b40d38e089cf345e33 -Raw Sha512 hash: 0x94afe9bdf473c06f33fb1c59854e1c15b13d76eeef4b2c4d27605f9be3f3113d13fc0b979870fff2604bf816510522abdee8622535917fc112813fabb5d38a9a -Gas remaining: 1039999.224 units remaining - -./octez-client --mode mockup hash data -9223372036854775808 of type int -Raw packed data: 0x0500c0808080808080808002 -Script-expression-ID-Hash: exprv3Fy2Seq49zs6JYAGd9zGkFFqiACPjyyHf3sCZFFRnxVvYKUPz -Raw Script-expression-ID-Hash: 0xc8adbddf5949c1d4d104c1b7d658baa7a4c5813c1ae7cbee9d099bbb73ccb5a3 -Ledger Blake2b hash: EWNCTfpNyM4iYvGgWPNoCxkFbGYnNzM61zTAUkc2gh4E -Raw Sha256 hash: 0x6ff401ab35f93209f6c1c8c4d7c36adfd58dba53bca644ecd9107edb30e184cd -Raw Sha512 hash: 0x9ae07221db7b28fdd73a89744a7d7b94fbe44a150cf752a864aa554adf9ac849a73cfdf0bc682c2b830b4dcaec5ac4de71a19eb1fbc58ded3d7a793f96cc4afa -Gas remaining: 1039999.424 units remaining - -./octez-client --mode mockup hash data -4611686018427387904 of type int -Raw packed data: 0x0500c0808080808080808001 -Script-expression-ID-Hash: exprtdBSRcCcmApcTq7pu378scXyxCVPbLxfiQ5uCsqNATnXQGaDbQ -Raw Script-expression-ID-Hash: 0x0e4f763b32f9f61a670de9049e17b51051a7eb39110a2fc978d4075fcad01cb1 -Ledger Blake2b hash: xrz5vpBWhFXPadfA7xjRBmhCRahN5UzoQE73iBMnkbi -Raw Sha256 hash: 0x99f3e8cb5de4405979d25b07b08d7e0c040c185f9e1ba22f4165f23f959b5765 -Raw Sha512 hash: 0x21f8c0bdb48495f65e9933b9a66ab86e5f980acd2e1c247c17c1f707474682e8f88fbd0ff6ad7eece958bb80c1963a2cc30ebd81708de4bb79f86878468c651e -Gas remaining: 1039999.424 units remaining - -./octez-client --mode mockup hash data -1 of type int -Raw packed data: 0x050041 -Script-expression-ID-Hash: expru57wdzZCHCeGnKwUzxCJjG1HjveGXp1CCusScXEMq9kbidSvDG -Raw Script-expression-ID-Hash: 0x4935af0cbcc38e08fae2742399a95eaa2a8aa3c4504971b72afbf1e336fd9d8b -Ledger Blake2b hash: 5vnEvsKtB8ojf9DuVntudWnfy6yRLfY4Duwx2j6a36dp -Raw Sha256 hash: 0x5db11f873d99e0d9c25e52c9137676326f8a03f18c6c802fecbcd4a5543c28f7 -Raw Sha512 hash: 0x45256a6d4fe9afc4eda42131ad62e28b5903c43243afdbc69709e8bb9a7cf49a0c117c26d58849f41757beae1052d00d78deb10bd62728a7c04afb32afb637e2 -Gas remaining: 1039999.599 units remaining - -./octez-client --mode mockup hash data 1 of type int -Raw packed data: 0x050001 -Script-expression-ID-Hash: expru2dKqDfZG8hu4wNGkiyunvq2hdSKuVYtcKta7BWP6Q18oNxKjS -Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d44e994a9fd2b8ed07 -Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv -Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a -Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.599 units remaining - -./octez-client --mode mockup hash data 2 of type int -Raw packed data: 0x050002 -Script-expression-ID-Hash: expruDuAZnFKqmLoisJqUGqrNzXTvw7PJM2rYk97JErM5FHCerQqgn -Raw Script-expression-ID-Hash: 0x5d2525095b5382da2c9c295a739a189382cfaa2ebfa54e320d15bc6f178d6820 -Ledger Blake2b hash: 7GbmUchPX2Y61XEnLc2xfFHA8bAqQ8Qj8o1xEkU4g3VR -Raw Sha256 hash: 0x0a8efab5eba4157330b3113690508ee944e684a3c6949c00d64fcab2d565e5a6 -Raw Sha512 hash: 0x4747a1aba769d89519dddbee3a1fb9d79555831b9044508efee0bd4f1837bd78dfeb585bf1e150d3c7f8dc79e815c4c3f7e4c7ef477e77bdc84dc4f5fb0598c5 -Gas remaining: 1039999.599 units remaining - -./octez-client --mode mockup hash data 4611686018427387903 of type int -Raw packed data: 0x0500bfffffffffffffff7f -Script-expression-ID-Hash: exprtucdegDH8uqtjprBzMMVaAFJxsctauXP7Qzmfu3KxcyTwnRnfk -Raw Script-expression-ID-Hash: 0x33a06c095748ee4505cba0c1b7ef8d7666ff5cff1ebf865d7b75b4fb8606a130 -Ledger Blake2b hash: 4UXfu1ECmNSrir6LkbB1wkcptuVFk1Supjch6Si4PfkT -Raw Sha256 hash: 0x563ee067653bda5b3609ef10c5fba6f76392642b950dca8ab70e85343caa6c41 -Raw Sha512 hash: 0x40691c0bb573951c3c48c13db7acf03cbb3c5164197555c98ff5a4858acbb2957e2daf0178bedcfd7e5cbd2cf045d693d822cb218b417e10ed517da1f34fe8c5 -Gas remaining: 1039999.424 units remaining - -./octez-client --mode mockup hash data 9223372036854775807 of type int -Raw packed data: 0x0500bfffffffffffffffff01 -Script-expression-ID-Hash: exprupFUK8vtnxuBeiwi8ajvzyqT3eytHd5RueTNQztXn6Q1rFGPKM -Raw Script-expression-ID-Hash: 0xab242636b94a88d317af40fe4928ede501f51249840fa44b2e57c2ff6d7d326b -Ledger Blake2b hash: CX4gqnkyYpudVKQVtwkvq2JbfjzPPZsgQG547UGxcKg6 -Raw Sha256 hash: 0x15d152f6eeb5baf6bf2630719997223fe2c1bedf2730656a755b36f841cc8606 -Raw Sha512 hash: 0x63af709255528779eeb42613bc0385b3564aa4882a7b8a3f9387850a907e7cee3f2a8a22b881f1222400dae352b1363b7ffb4ff7528995f8b8384932be5af625 -Gas remaining: 1039999.424 units remaining - -./octez-client --mode mockup hash data 92233720368547758079223372036854775807 of type int -Raw packed data: 0x0500bfffbfe1eebeeeb8eaffffbf9e91c191c79502 -Script-expression-ID-Hash: expruEdpvhN7bLdgrLpgAGvrzHSu9gs2K7V474qz6BjpAP9uXegr3q -Raw Script-expression-ID-Hash: 0x5ed0b316a2ab47e3698fa3b046ebefc2e775ad37426a0886c4f14d3f7650c462 -Ledger Blake2b hash: 7P7u7hLd2MNuGyXfWD6bzYdXhBxfGn8LPmcMRgzEYath -Raw Sha256 hash: 0xeb749cd1d6d7184d6d0d6f0aae0cf379082bc340f468e2b89a9beb3190f59a91 -Raw Sha512 hash: 0xb8bec79fbca40add468205be6c6ec631f3977fadcf843ef65ca288dd6b8f18ddaa822608163d825ca00e4d348bb3c79abacc0b1555d45ac9c235fd38234dbe31 -Gas remaining: 1039999.224 units remaining - -./octez-client --mode mockup hash data False of type bool -Raw packed data: 0x050303 -Script-expression-ID-Hash: exprvDnoPjyKeR9FSnvwYg5a1v6mDyB6TmnATwWySSP6VmJxrzQb9E -Raw Script-expression-ID-Hash: 0xe0978ddc9329cbd84d25fd15a161a7d2e7e555da91e2a335ece8c8bc11ade245 -Ledger Blake2b hash: G7iMrYNckCFRujDLFgtj3cDMCnfeSQ2cmhnDtkh9REc4 -Raw Sha256 hash: 0x35ef99f7718e7d1f065bae635780f41c0cd201e9ffb3390ba6ef428c2815fa66 -Raw Sha512 hash: 0x2c9ca967bf47f6cc76861693379b7397f65e6a1b6e633df28cf02be0b0d18319ae783b4c199fd61115e000a15a5ba8a292a3b1468c2cfe2b3e3a9fa08d419698 -Gas remaining: 1039999.624 units remaining - -./octez-client --mode mockup hash data True of type bool -Raw packed data: 0x05030a -Script-expression-ID-Hash: exprvMjTcyX8e8HskSUV3ipMhPzMLKTn92vsWZkiJTTYj7U9J8sAyP -Raw Script-expression-ID-Hash: 0xf2a04e59c51d374e01df59a69495e400c6548415d628cf212a108f46697e4f53 -Ledger Blake2b hash: HL7SRbwe6n7r92rqsPQqN1hu1kd8uJhECY6Z5PJTwSRp -Raw Sha256 hash: 0xfb2a0db46fe82f0aeb2824b2f0840cc1437bf7bdf836d5164351e0cfe5b0f330 -Raw Sha512 hash: 0xcd0d052ce182cb449207cbb0781be4c9eb3f48c631fe210a03996f6a287e528d8a94817758102a647820007d18cb8e94f0f8bb829ca571287d390b47ab6ae389 -Gas remaining: 1039999.624 units remaining - -./octez-client --mode mockup hash data '{}' of type 'list(bool)' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data '{}' of type 'list(int)' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data '{}' of type 'list(unit)' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data '{True; False}' of type 'list(bool)' -Raw packed data: 0x050200000004030a0303 -Script-expression-ID-Hash: exprvAgoBrfufCNYoqAjdTcW2zD965bvLPD76xT7bVBNSn9SU6UgVd -Raw Script-expression-ID-Hash: 0xd98b8c66ef2fb29d4d2ad21a667a753e0dd7044571e709330d4b92a5dc3d622c -Ledger Blake2b hash: FeCtVSz9QEDR78yiR1aQwQaFMaoGES8VjX2HQCjZAfz3 -Raw Sha256 hash: 0xc939a10e1f26f0fddb7d00e26595b383bcd8d5fad6cc5427e8b0385a323d2a78 -Raw Sha512 hash: 0x98e4f14ef8e5ad0fa7520f07459fec0d5eb2f5759f0beebd5fa63beb950f6afa0d51c2573402d09684308677bae667ae8323fc2a32b5358be3155f56b73e263f -Gas remaining: 1039998.932 units remaining - -./octez-client --mode mockup hash data '{True; True}' of type 'list(bool)' -Raw packed data: 0x050200000004030a030a -Script-expression-ID-Hash: expruRvaTS59Lau3wHMFuiADbSkSTPf61W3UCW25ej1kY8TnioYiG4 -Raw Script-expression-ID-Hash: 0x7872a58d23f32f0e045de43738dc925bcab9c84c4ea5e7d25774832cdf66f2a8 -Ledger Blake2b hash: 97BKSDXQr12DzEiMg2HiFoA2Aq9QnzDpmVatc2nrr5xB -Raw Sha256 hash: 0x709190aaed8bda9abbca553974949a4a81dcdb927ebbc89aa7aef53bee218ff4 -Raw Sha512 hash: 0x7e67d91c4bb7a7c56e66ca752878e07ec45d61c6ff413b210384be67e946ca63cb1f852137d29494a7e232e2439092270e3b7abd834bcf2b18d192729794dbf7 -Gas remaining: 1039998.932 units remaining - -./octez-client --mode mockup hash data '{-1; 0}' of type 'list(int)' -Raw packed data: 0x05020000000400410000 -Script-expression-ID-Hash: expruNySy7xWaeniq7qraAeEtFzBvJvFA4Jt3op3Dt2m6PddU2Hqr7 -Raw Script-expression-ID-Hash: 0x71bf94bc4515cc0afc439e3714423dfa3ef180fa8ff2c671f245dba990eb41ce -Ledger Blake2b hash: 8f2WHzqFH7YhWa1rrFtHehTMxTUFJg49iwSNokpdZLSR -Raw Sha256 hash: 0x28e46755a35977ff466f50cb4224bf71541ca519ca1a3f900e1d2cd7da4537b3 -Raw Sha512 hash: 0x0f79f40cb2c56e753120d405b1bb5bb843ac34fc2b362b4f8f684913318ecbf3d99e4be5fc6f8ed16ee11fef6f4c412ecfc8c6efbab1684585b0ceb8a6bad3b1 -Gas remaining: 1039998.907 units remaining - -./octez-client --mode mockup hash data '"[CONTRACT_HASH]"' of type address -Raw packed data: 0x050a0000001601d1a37c088a1221b636bb5fccb35e05181038ba7c00 -Script-expression-ID-Hash: expruKMyQaSREJvvRY1engxJjG9eExbrS22JaZUiBmMnhVew5nyu98 -Raw Script-expression-ID-Hash: 0x698c356a1846c517db5b16f7a8ff507c3eb4aaa46c316a6936e955123358b306 -Ledger Blake2b hash: 871oxBK1GsehvbFAwL4bBF4w22oBKfxom746gk7wnr8d -Raw Sha256 hash: 0xa5f6f6520cfa43309e72f6745efcbebc1edd1486ab219421e349c8000ddfe485 -Raw Sha512 hash: 0x4618bdd8850b8707c52bbf7f64526f8d83e59ccb3f2f1067ca33b5c470c709be21dc9242db15d5428af7b13dfb77353ab39d9367e2a6a12986e95aaf2d4285a7 -Gas remaining: 1039995.724 units remaining - -./octez-client --mode mockup hash data '"[CONTRACT_HASH]%entrypoint"' of type address -Raw packed data: 0x050a00000020011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600656e747279706f696e74 -Script-expression-ID-Hash: exprttX9EL2UJb6Jw6tALybjjfRB3YUC4XsXdYjoGs7SnwZwwiEDHB -Raw Script-expression-ID-Hash: 0x31241f23ec93014cd7b7cfe1e0a21517bfd0f08b38e348d78f45d37a40da530c -Ledger Blake2b hash: 4JpvZAMQiWdgASBEyfLJB45oCrsFocB5ApSNa99DbRPZ -Raw Sha256 hash: 0xf1c661a1663f788977e3508c6fe3c85346a34101d76b1d47783839ed2d756303 -Raw Sha512 hash: 0x781bd064edc01ff80b436682932dd2f0550a6dbf26be32ac434c6386235f4b4c5bb4610b9fad23374d606dcf853a7e16fcce4e3c20fd796e116adb587cdddcbd -Gas remaining: 1039995.624 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address -Raw packed data: 0x050a00000016000002298c03ed7d454a101eb7022bc95f7e5f41ac78 -Script-expression-ID-Hash: expruH3qgknRBJVLVkwdzf6wfBxd7Y1uqNxr7zuMFxTC12e5PacLfv -Raw Script-expression-ID-Hash: 0x644beb3894b35023de5b76a4c054a32eb7a818b2a83a1b0eb3974184faad1cbe -Ledger Blake2b hash: 7kWuwaa65KxeAcBTC9U9TvSn4d7eo4hzmTReXrFU6QA1 -Raw Sha256 hash: 0x690cf3688186dafd5f78765b514f62ebf98804ed4732d3e9504d1e5d10f62c64 -Raw Sha512 hash: 0x9fe6e4a006013a541dde89aeef0db58a39c1b6d06f12554c8d01dc67dff183602d4e5d4a04ac37088d8e7e7836d08f044b279bc70a752b3ad3f1ed0131a9ea03 -Gas remaining: 1039995.724 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address -Raw packed data: 0x050a000000160001e5c6d1f726796e98b2bad2a819a36f742b2fe25b -Script-expression-ID-Hash: exprte1BpSKiw9DnLocxVhaUQYqPGZiCbHrENpe2VsvfjvNZ3LTiGf -Raw Script-expression-ID-Hash: 0x102dff270630ac032e24ae0a62b478930f56f4f5a27c9c3c799a8496d749b8a6 -Ledger Blake2b hash: 26ACmTEYpcjnxbUcXQZxYQgWbig1zpHXpmjKecLqMJEH -Raw Sha256 hash: 0xc7016dde1b3b0a15dbfc476de05480386d8781f996769b0113bcf8d3a0f73502 -Raw Sha512 hash: 0x8446a69748c9e209bbd9e2d7ec652b3edd1516905b2ef11008993c27d239a237b3372c26854b8a1d393aa504478de76560a9fdd96fef24faff8483851814c6c7 -Gas remaining: 1039995.724 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type address -Raw packed data: 0x050a0000001600026c9b3ad59e0f8bdc2bd2011675825f9f547131da -Script-expression-ID-Hash: expruXqtng8pcQAshhkrVpENv9xXSirB19McDD4geN3aFFSbjJQMRy -Raw Script-expression-ID-Hash: 0x85e36142a913e3c8d6fb5a77aaad753b01ebe40096bf46090737b8e80effbee3 -Ledger Blake2b hash: A1eKYfrX11WNdtxr3QeEzEpY95epaJtJhmeTQEhw3BTg -Raw Sha256 hash: 0x1520063584bffabc0cc4d64d1d9f35c205ee403789653fef4465fad7da23a484 -Raw Sha512 hash: 0xe8fa1be3ab9fc177a731fdea29e3242831ccea70db15fa5f0dd8f592794261c9e49b51311e0b5387a81472c77edd87cba3afa6207e36ef0bce7f30b0c03bacb0 -Gas remaining: 1039995.724 units remaining - -./octez-client --mode mockup hash data 0 of type bls12_381_fr -Raw packed data: 0x050a000000200000000000000000000000000000000000000000000000000000000000000000 -Script-expression-ID-Hash: exprvGRJUuBnkCc3vi2nFiCKonniDQhcJxTGRuJY68uJubvS1bxnmA -Raw Script-expression-ID-Hash: 0xe68feee8b6ba14292b006b585748c4bd4757955f04320efd37fc0c719bdd7258 -Ledger Blake2b hash: GX24pFg5TqeFyCjH3dpXHP3tWZs8ZMm4MVo61DQnXRzo -Raw Sha256 hash: 0xc928f798bdcab5fc59c9c06f348c2b1dd1d846ef8d2694ff3359a7fa98e5aaf1 -Raw Sha512 hash: 0x56d50c63bacfbac2102091e99071b824150d2c61cbfba9b65a9bad467f1e364a3e1286b0c5de1e7084c7dd3d27a29c19ecbac42d4f5d7797c003b75063f688b4 -Gas remaining: 1039999.104 units remaining - -./octez-client --mode mockup hash data 1 of type bls12_381_fr -Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 -Script-expression-ID-Hash: exprtgCbDCSxBsG1xnR5B2MmdvwomjRwGZdM2MxfW5NdcB3uXiUUgD -Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fae3257cec340745254 -Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 -Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 -Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039999.104 units remaining - -./octez-client --mode mockup hash data 0x01 of type bls12_381_fr -Raw packed data: 0x050a000000200100000000000000000000000000000000000000000000000000000000000000 -Script-expression-ID-Hash: exprtgCbDCSxBsG1xnR5B2MmdvwomjRwGZdM2MxfW5NdcB3uXiUUgD -Raw Script-expression-ID-Hash: 0x152ad70bf1a27b6885d3085953411591cbeccd289c0c9fae3257cec340745254 -Ledger Blake2b hash: 2RdT5REqvvzsKNsc2wkGeVcve9j8srXqAqbz6ZPECHi3 -Raw Sha256 hash: 0x251c21e3c764b0993d4e49a7939ebc0192c9af7f6fbb5073f1035ea17a2cbe22 -Raw Sha512 hash: 0x31a063e0701b89ff1a19364d44c39c7ba28fbeb20b95e5a12be432fcc419666fcf030ed6349e3bca6f7446989b5cb9fb3b4425c4eff01ca1993efca695db199b -Gas remaining: 1039999.104 units remaining - -./octez-client --mode mockup hash data 0x0001 of type bls12_381_fr -Raw packed data: 0x050a000000200001000000000000000000000000000000000000000000000000000000000000 -Script-expression-ID-Hash: exprtitZpQKmhwwbedezDJBMs2aC9a9xwK1QgAEyZXsArw4d2FQ5Kt -Raw Script-expression-ID-Hash: 0x1b460a4d53d8b7029da22adfcaa257555be45259e3480690cafa1e997212afcf -Ledger Blake2b hash: 2qTxCogJudjrxMBHHvtNsurx1dc1P9Gx1JPUbBaJXDre -Raw Sha256 hash: 0xe7038c6478963c7e52c61c9590b774280cfacf0547adc4943a26a608bdb0f277 -Raw Sha512 hash: 0x70e7340161a29e3dc08258b154fc797e2ea407ed35dcaf7782e0ad693906c75d15fd68887f2b03375f5c869c9912c390d020b47aee1ca6d20c5ac714c45b678e -Gas remaining: 1039999.104 units remaining - -./octez-client --mode mockup hash data 0x0572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 of type bls12_381_g1 -Raw packed data: 0x050a000000600572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28 -Script-expression-ID-Hash: exprupSAayZNCY4pMsSxx2Cbqr8LUcZ5YUnRG38hXjqRhkCAkVvt9q -Raw Script-expression-ID-Hash: 0xab8f542bd84f792908f266964e5329c1532fd6e932de8c34256c3dd5d972fd91 -Ledger Blake2b hash: CYhUfj7xreN4aQ1vV8YWApwu8o1Yuhuv9JrHKdFivGuN -Raw Sha256 hash: 0xeb0effa0878f7c1dfba8a579b282f45ae24715eebc01929bad29dcd9ab44d4da -Raw Sha512 hash: 0x918f9b3b2b615817b4108beca643225a11796825fb00a9126c950f59afbf95364b11ac468150e6fd458b01d1ad3d77ccb0c08a2849e9262e66058014c41cd487 -Gas remaining: 1039940.864 units remaining - -./octez-client --mode mockup hash data 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 of type bls12_381_g2 -Raw packed data: 0x050a000000c00a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899 -Script-expression-ID-Hash: expruyowq2jYmYPBWkdc5ZSgqP4daGevfjJePrhDTUtP7YQL4Dzi5x -Raw Script-expression-ID-Hash: 0xc0d91f9ad81185f09853efcfc5951eca5c19f9b983808d824637f7bdc03ff595 -Ledger Blake2b hash: DyoJaUpE63MSnYEmW1pBQCK4DjLCURe2My2snWkmyC9S -Raw Sha256 hash: 0xa160577bd9510066d5aa8043d4ce365f03a4f5057516d951c380a521c04fddd8 -Raw Sha512 hash: 0xb0ce4a3348adff71470fc470d700b28fd991a91d4013cc6d89bd34a2f1c05f9d0be5cfe64f6b5d79fdbc27eb3e84be520e4e2d864d6b6649722b22061bbfbd7b -Gas remaining: 1039924.804 units remaining - -./octez-client --mode mockup hash data 0x of type bytes -Raw packed data: 0x050a00000000 -Script-expression-ID-Hash: expru3w5vUB5kLiEvvbFA81Su29kZM9bvCuVVPDNqVQq9RJ5PZ8oRw -Raw Script-expression-ID-Hash: 0x468397e139c257d8cd242c3e9a9a821f987eaab1e2e5098f11095258f1f11eec -Ledger Blake2b hash: 5kFvPvb5eUSrt99ekYQYag1Yfz5AsvsUTzVQFHeNPoW3 -Raw Sha256 hash: 0x59b7ebd426a428d05b6f1d634e56708f7711bd6d0495578281115368c1635e2d -Raw Sha512 hash: 0xb3dd201d5209fd911e193f3490154db2335205f472f0a7730e28182c5a3f07fa997f266226b12efb1bb39e8bc39d7a54d9c69fb575664bfb0be3bdd0550f7d65 -Gas remaining: 1039999.624 units remaining - -./octez-client --mode mockup hash data 0xABCDEF42 of type bytes -Raw packed data: 0x050a00000004abcdef42 -Script-expression-ID-Hash: exprtbzFhHQHhmEMHRqKi6k1fzAQYiVtuCXauZvM1VrN1p8iJLhJeG -Raw Script-expression-ID-Hash: 0x0b9a15faff1a1effa06a876cb86e81c9df2ca55fa8adfc4759449c602720a8c9 -Ledger Blake2b hash: nHm2FU2b9wwdwJVPrUS4tYmBbrsTrhsqY1U4moGsFNG -Raw Sha256 hash: 0x616628cdbcd057574ae41c224271249cd8b1cca683b206d58c088922cb9f9222 -Raw Sha512 hash: 0xc93e6e937d63f506af719edccc50d15d0faf7b213e5f572dd3ac73271815816ebdf738fc6345464af7a2ce7fbace473a03ae38157dea3fb4cc34a6c3b17b7dbc -Gas remaining: 1039999.584 units remaining - -./octez-client --mode mockup hash data 0x7a06a770 of type chain_id -Raw packed data: 0x050a000000047a06a770 -Script-expression-ID-Hash: expruWMYwqN4LDi29J8v47jRfpLkqjEkUaYtn6N9RZL8PB6z7Kca2w -Raw Script-expression-ID-Hash: 0x82820dedcd30b1b2c3253042b252e0b385dd365eaffdac09fbadf19cea1fab4a -Ledger Blake2b hash: 9nT2FHdDkNKBJZie1VRm6WookGzwzZ57FYetGbjvgam7 -Raw Sha256 hash: 0x092220899acefcdc4870e3c2d6ce436cf3e7a27855ebca4d3b24da62bc294a5c -Raw Sha512 hash: 0x99d8d47bed4a102b519062df6f04a65ce5ab7f98fadd3fdf7cdc6c21c652d9a59e8116781683c08b2094bb4fd99f516b690978d0a1f105aa05443a3e7e087697 -Gas remaining: 1039999.484 units remaining - -./octez-client --mode mockup hash data '"NetXynUjJNZm7wi"' of type chain_id -Raw packed data: 0x050a00000004f3d48554 -Script-expression-ID-Hash: exprtXgy1oXtj7HHY7Vw9rw3nKoPmrWaGE9iYF6ToeYfvcwmKTFECY -Raw Script-expression-ID-Hash: 0x01d7b61758f39c12865684f612da8f479d3755efaa0af26636254068a31c5083 -Ledger Blake2b hash: 8CBfWC4xY9SgFvQidL2r53pwquTtGhW8UJGcgu5wcYa -Raw Sha256 hash: 0xf6a25e29f615b4f5edb309db8229c4e607828111795f6ac68a30684bd04bcda5 -Raw Sha512 hash: 0x09ef7ad4129366f7c7e3beae66514b91728428b1b6b62454876fd7b07621bffa068de15dbc4cf3b550682481663df2a64435f65ed231787feeec183221dd4c6b -Gas remaining: 1039997.934 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY]"' of type key -Raw packed data: 0x050a00000021004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f -Script-expression-ID-Hash: exprtbUKNrgLiggTQePME77Tgz9QcD1HK2pEVWHFLnR1qaah41D2XF -Raw Script-expression-ID-Hash: 0x0a6e0f781438d15aea8aeb41e8f00ea25bacc3d1efedfc62ca2eed7fcf299e3a -Ledger Blake2b hash: hiR4yro9kA38FKWeB8Ps8hzNyeqSoskUNGePRJQi4Uy -Raw Sha256 hash: 0x30467dc415ef58a775a6aa618f515d856287ad20b56477a16c0cfdf0f2a2ed3c -Raw Sha512 hash: 0x1b3f5993512659e0164d186381de64bd6a4c678cefd7ca756ec087769208fc62b4563df31cd4680707e3c43a5a8c7a4579ad5c34ae471a5731ebcbe0db2255ec -Gas remaining: 1039673.839 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY]"' of type key -Raw packed data: 0x050a000000210057b0e07666fe26167f92bffe667dc2ba2214a404f4fe5d1bb8ce01baef5663a5 -Script-expression-ID-Hash: expruJXx976B1KtYQeE96FS74k4VRXRKBAWx5e9TMWEBGPwv8VG5tt -Raw Script-expression-ID-Hash: 0x67aaee572e9d4e0673e66273b43e2300393ee44eb95984304b1407abb5809c24 -Ledger Blake2b hash: 7ygAaVU28qwNcCvg5stUKDPUikjnoMtDJM6FbNnrEmeT -Raw Sha256 hash: 0x13830142ebb330c5f0177637a05894338307e1179b67c45d90eb2e98151175a9 -Raw Sha512 hash: 0x075b346f72fb69759345eff13f52ad51b9c5c138fc6155742c309910412e2efc9a33615a8d4a3e6724c15de7960807cd7e83185d24ab5c096f766916ac035982 -Gas remaining: 1039673.839 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type key_hash -Raw packed data: 0x050a000000150002298c03ed7d454a101eb7022bc95f7e5f41ac78 -Script-expression-ID-Hash: expru6fotvwsd3SnSHp5qhcUTHAmd1hqQA24srgXcGRRaCA2gPLYkf -Raw Script-expression-ID-Hash: 0x4cba54c206c1ccfd72a4a5492b21ae41f1faa6a7a7cce3f1b270218dc79814d3 -Ledger Blake2b hash: 6AWn5TRUkgYJe4fjjZrovKq81K9bNDNNgcS7xiTszkbC -Raw Sha256 hash: 0x4156dbe479999c7df14d90ae46e304304534cc38795d73ecc76d60c78724f2a1 -Raw Sha512 hash: 0xffb476c7d1ae269c82ea4d09a1513a8d915a8b50acb759c351228edc5e623e6f7390f2bd856625476ba14bb17b4dac07572fc40341e9eedf44e372a40550d798 -Gas remaining: 1039995.734 units remaining - -./octez-client --mode mockup hash data '"[PUBLIC_KEY_HASH]"' of type key_hash -Raw packed data: 0x050a000000150080dfbed18097a4cb62dea643ebc5346600b5204d -Script-expression-ID-Hash: expruEg1o4eXzeCwhgod4hTPbJjdpULmL2cbYphGFC9trLLhNaK3kw -Raw Script-expression-ID-Hash: 0x5ee69f25f750a193690ec32802a7a33b9572c7856791471d21fc4e73199dbaf3 -Ledger Blake2b hash: 7PTHd1XgawoAQDjiktNjDyPC5tsse21LnNFufiRifYbc -Raw Sha256 hash: 0x6f54374213823a79f912fb52cb57793466b4a39267dfbdcfdc918eeef296499f -Raw Sha512 hash: 0x2cb036951cd1725c7863f5c04f6f81a879bd0a533b1422a60a2a38d0c8243b10a0a879766e2a04c3cd47c532e417089839c3cf621621060f00bc5c79bda058bb -Gas remaining: 1039995.734 units remaining - -./octez-client --mode mockup hash data '{ }' of type 'lambda unit unit' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039998.843 units remaining - -./octez-client --mode mockup hash data '{ PUSH nat 1; ADD }' of type 'lambda nat nat' -Raw packed data: 0x0502000000080743036200010312 -Script-expression-ID-Hash: expru2DqBT8sxeHNp8FZnU3yEsE3eBRttz553dx3ct4fLZKvag6KXz -Raw Script-expression-ID-Hash: 0x42a0dcc26c782dcc094ba725e4bcc4f8710c72203a895b5e888990c12d03d7df -Ledger Blake2b hash: 5V6BBTaoBmSdwu8pv5xNMNBwm1mQGdPJ8e8N3s22Gcwp -Raw Sha256 hash: 0x113616e40fd9fcf4cb73a9cf9c57fc0ab1853fa4432b9ca975b472d0173bc007 -Raw Sha512 hash: 0x2256250f59e3c1c708eae9aa4d6f7d2dafdf82cb12b872db8320048c0dab3e225e96e846e284382fcfc832b83f0bf3ee3945fc6936357b2c29d96f29ba90315a -Gas remaining: 1039995.855 units remaining - -./octez-client --mode mockup hash data '{}' of type 'list unit' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data '{ 0 ; 10 }' of type 'list nat' -Raw packed data: 0x0502000000040000000a -Script-expression-ID-Hash: expru4vWphhWxDfcnCeXUdGZAhDpNTNt7qSvcoEAF58Se8dVgC2fBR -Raw Script-expression-ID-Hash: 0x48c32738e9d3772486ca8e0d150d6b94cebcd2421e3e8112434192c3c1df3a86 -Ledger Blake2b hash: 5u2x2XQZVxYHKm1LpjamMs894nT2CnvMKTQmeZsrtPH7 -Raw Sha256 hash: 0xaf9e7cce96fb6243ab05cd630f260862264dfe7eccda6fa24050a7cb9043134d -Raw Sha512 hash: 0xc699a04538d2cc260b183e65a02b1ea9fdeeca4c3bc253ae8e70d9824b7e79ebae34f6da3dd5eb3ceb29e9d18dc5e6f36d630b13be50adf566e9badb810f3349 -Gas remaining: 1039998.907 units remaining - -./octez-client --mode mockup hash data '{ Some 10 ; None }' of type 'list (option int)' -Raw packed data: 0x0502000000060509000a0306 -Script-expression-ID-Hash: exprv7yYyxehrZrCaxT9CLhMtAmQCUjjv9PDBZMkqASKLHUVGQUQHk -Raw Script-expression-ID-Hash: 0xd363a18306b7fc740debf0d1a981b5c4e5a3b7914eb04b90d6d406bce9f74d41 -Ledger Blake2b hash: FEB92G5KaAbrFnAp7UjD1AR9daiKQinjcvrAi3sRYG3S -Raw Sha256 hash: 0xa24baf1b39078a1811069da825039c4e6e8ab2de34d58f29baab4ffa9323fdfd -Raw Sha512 hash: 0xb92f1245587939c4ade1554874192d1bbd83f9d34a044e778fca611a6eac5f1a91a259b5fb0682495c1735a0f50e7da5fbdc4e4029e66ed64ecdc7a832a36e7c -Gas remaining: 1039998.531 units remaining - -./octez-client --mode mockup hash data '{}' of type 'map nat unit' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.504 units remaining - -./octez-client --mode mockup hash data '{ Elt 0 0xCB ; Elt 1 0xAB }' of type 'map nat bytes' -Raw packed data: 0x050200000014070400000a00000001cb070400010a00000001ab -Script-expression-ID-Hash: exprupowg2SRTtvx8kU3J6iV3Nta1rZ54KFMMHvX9ADcB9kg8vDR8u -Raw Script-expression-ID-Hash: 0xac6995309e75f33132a6819b36c2ae787684be3c23e7cf2a44533229b0aec974 -Ledger Blake2b hash: Cc2W7aPZgPoiuVfuxR8j6gjxgpuZDBJGjSaRQemzTnFM -Raw Sha256 hash: 0x732bb539d52c41e6cc09d6116b1b3d25257b27dfd7adc7a09e03d345c09e0594 -Raw Sha512 hash: 0x0d565633ca0b3c3751aee0fe54d9be744bea79b1a714d97227397dfe79b5058d6385bc86dcdabbb280c5fc2fb56fc073550ac63d947df2787a5927a1342c343b -Gas remaining: 1039997.698 units remaining - -./octez-client --mode mockup hash data 0 of type mutez -Raw packed data: 0x050000 -Script-expression-ID-Hash: exprtZBwZUeYYYfUs9B9Rg2ywHezVHnCCnmF9WsDQVrs582dSK63dC -Raw Script-expression-ID-Hash: 0x053f610929e2b6ea458c54dfd8b29716d379c13f5c8fd82d5c793a9e31271743 -Ledger Blake2b hash: MV6HviXsJnEwxPKHLSUxEvxZVZr14cYYiQth4DFa2NN -Raw Sha256 hash: 0x69c492e24afa52c556de5ea70e1b5d7da3f0bc7a5a7fd1d413444c1a42a7e9b3 -Raw Sha512 hash: 0x6fb0c536a65271998988dffee83efeb370514fcfecd339ebda1f97bde876ea5ecde4a2e8e93b22071849f5625639936ebc55b71c3b4118254f5bff444e515a85 -Gas remaining: 1039999.624 units remaining - -./octez-client --mode mockup hash data 1 of type mutez -Raw packed data: 0x050001 -Script-expression-ID-Hash: expru2dKqDfZG8hu4wNGkiyunvq2hdSKuVYtcKta7BWP6Q18oNxKjS -Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d44e994a9fd2b8ed07 -Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv -Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a -Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.599 units remaining - -./octez-client --mode mockup hash data 99999 of type mutez -Raw packed data: 0x05009f9a0c -Script-expression-ID-Hash: expruQUsZtokRsnKdzPwveAiq1QX2TgnMeRdhQ3rqBJw6LbfK7nJEa -Raw Script-expression-ID-Hash: 0x752bc02931fa202b4f7c174c0cea1254e6a007bc42f53d00d7f51556392f84f0 -Ledger Blake2b hash: 8tPPr8hLWFsY27xsdiM85nrPUoCXxEPR3PTWyma5JTyH -Raw Sha256 hash: 0xd794d67b0648f7a498c96eb5b8b8ab14d15c45dd13ae8168b4a3741e7b4cc701 -Raw Sha512 hash: 0xed76e4309dcbd480e19bb3e942adaada5ead9eeec944c0f90798c978cccee14b80d2a1b8f0f2346ca54b56d1662b02c6b0b58a2caa1a7187d5281e70ccd43ce6 -Gas remaining: 1039999.549 units remaining - -./octez-client --mode mockup hash data 0 of type nat -Raw packed data: 0x050000 -Script-expression-ID-Hash: exprtZBwZUeYYYfUs9B9Rg2ywHezVHnCCnmF9WsDQVrs582dSK63dC -Raw Script-expression-ID-Hash: 0x053f610929e2b6ea458c54dfd8b29716d379c13f5c8fd82d5c793a9e31271743 -Ledger Blake2b hash: MV6HviXsJnEwxPKHLSUxEvxZVZr14cYYiQth4DFa2NN -Raw Sha256 hash: 0x69c492e24afa52c556de5ea70e1b5d7da3f0bc7a5a7fd1d413444c1a42a7e9b3 -Raw Sha512 hash: 0x6fb0c536a65271998988dffee83efeb370514fcfecd339ebda1f97bde876ea5ecde4a2e8e93b22071849f5625639936ebc55b71c3b4118254f5bff444e515a85 -Gas remaining: 1039999.624 units remaining - -./octez-client --mode mockup hash data 1 of type nat -Raw packed data: 0x050001 -Script-expression-ID-Hash: expru2dKqDfZG8hu4wNGkiyunvq2hdSKuVYtcKta7BWP6Q18oNxKjS -Raw Script-expression-ID-Hash: 0x438c52065d4605460b12d1b9446876a1c922b416103a20d44e994a9fd2b8ed07 -Ledger Blake2b hash: 5YgR7rjfSbSbzGEYhhBG9ENRHhdVSUu2TJ6RyNLawjiv -Raw Sha256 hash: 0x57072915640d052f4e2843e1498b10c4f71b62df565525d33c4a66a724e3e20a -Raw Sha512 hash: 0x112e6b61a60ecf001d501f39284ff8a575d818f2f79295b90b24f045d165a490c19cac2add9149dbdd23a8f2cf956dbee0efe17449111e6326e97ab21532f445 -Gas remaining: 1039999.599 units remaining - -./octez-client --mode mockup hash data 99999 of type nat -Raw packed data: 0x05009f9a0c -Script-expression-ID-Hash: expruQUsZtokRsnKdzPwveAiq1QX2TgnMeRdhQ3rqBJw6LbfK7nJEa -Raw Script-expression-ID-Hash: 0x752bc02931fa202b4f7c174c0cea1254e6a007bc42f53d00d7f51556392f84f0 -Ledger Blake2b hash: 8tPPr8hLWFsY27xsdiM85nrPUoCXxEPR3PTWyma5JTyH -Raw Sha256 hash: 0xd794d67b0648f7a498c96eb5b8b8ab14d15c45dd13ae8168b4a3741e7b4cc701 -Raw Sha512 hash: 0xed76e4309dcbd480e19bb3e942adaada5ead9eeec944c0f90798c978cccee14b80d2a1b8f0f2346ca54b56d1662b02c6b0b58a2caa1a7187d5281e70ccd43ce6 -Gas remaining: 1039999.549 units remaining - -./octez-client --mode mockup hash data None of type 'option unit' -Raw packed data: 0x050306 -Script-expression-ID-Hash: exprtn5DaoF31YMuSLAJFjARQmKwsdUUnHMCKBqZ6zoH1SiAyqHkFh -Raw Script-expression-ID-Hash: 0x22809fd952c3478272e90aa2f8e59260e81bfa5c35329845dddbd462470f61bc -Ledger Blake2b hash: 3KgcqHyPuSS1yTH3UyqenupZv8z2dDJjXmuDNUoZa8ew -Raw Sha256 hash: 0xe61760f1647df1aa8f3f64cf8a93fecddf536ed4867d4111cbedab7652f8267f -Raw Sha512 hash: 0x4a3457a98c4f863fb53dfa90af26aa46becda18150cda8e2d3d1de2a1f6536b7c5bc7c99f0216610650e90653d69badca147cd88e3d6f472b5be617c076980e0 -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data 'Some "foo"' of type 'option string' -Raw packed data: 0x0505090100000003666f6f -Script-expression-ID-Hash: expruWj1i3NoT1rSzrv22q9uTuL8Ax5LcRkhHQJLDbRfaHSydRmpx4 -Raw Script-expression-ID-Hash: 0x83592457741d2dbb22af78846b3040e92614170c2e4850110a88b2d924a10ac7 -Ledger Blake2b hash: 9qjFGa2NhRMBbutDccsFotBEpNeCuK4mJu95q3hiJZ3U -Raw Sha256 hash: 0xcd56882646da9e0c3309537fb762087316b9bd0c754e7c858b30445e5a4df6a0 -Raw Sha512 hash: 0xb7c841f6c2ab26702ce4b2a72b0f70e63c561ed97bc77df78c2f763e492eb8c86ecf755b60aa1246cc1ba95b0de2d1a3afa3de408325b3b2c764efcb24d1a9e5 -Gas remaining: 1039999.174 units remaining - -./octez-client --mode mockup hash data '(Left True)' of type 'or bool string' -Raw packed data: 0x050505030a -Script-expression-ID-Hash: exprufiG2ZNeHqrtWKs4bJ3yPwqxxe2W1jPv8NfHezGjadF15ruvUw -Raw Script-expression-ID-Hash: 0x97c11ba899e5d0cb4772b7932f1669b4ab29113b0f17c88e22fd10fc1faf991e -Ledger Blake2b hash: BDPMBz4ejDv6jv7uARzSz4Uv5LbixRHZJ2K7vfXGhzhT -Raw Sha256 hash: 0x07b7ad9ed53b16bf17d52aa7eb3ae77fba8671f6f979eccc92ecf9e6702f7b1f -Raw Sha512 hash: 0xb2de8eb67db0b449a7b5b844e6c7d1cb8ca874003a1e43b802bf273474e621deaefe7cdfb27c2bd2c78326e2e0506f1ecae038be143cf5b4b4d7e918b6ebc72e -Gas remaining: 1039999.188 units remaining - -./octez-client --mode mockup hash data '(Right "foo")' of type 'or bool string' -Raw packed data: 0x0505080100000003666f6f -Script-expression-ID-Hash: exprvD9V6jDDCiYUQjkqNdnD2eFyqMA76Rkoa6rpVXkim7hcqHFFEz -Raw Script-expression-ID-Hash: 0xdf2193b9a689f10ac5c8a48c577f3e2a94221bd9ac884b5fa1b74f3f916d7dd3 -Ledger Blake2b hash: G21cWq5PkGo84UkfufjDCMXWsSQA3PEDBLKYPt1qtvan -Raw Sha256 hash: 0x2477b0dad8808245eacf22a51ef1f6b9bcb59b8f4d4b3a979132fa74dd129abf -Raw Sha512 hash: 0x64d21e4c66c2c1da70cda80a9609a28e8571734e42a63927753c2027f5c168086fd9925ddaee1544b254fbf63b055bc5ee4e9a987f457b58be04abbdfd29ac57 -Gas remaining: 1039999.114 units remaining - -./octez-client --mode mockup hash data '(Pair 0 True)' of type 'pair int bool' -Raw packed data: 0x0507070000030a -Script-expression-ID-Hash: exprubgTpz2xzfqw7VxoZ9CfmYeQCayFc4mAA9pgnXDKXo64FD2tDw -Raw Script-expression-ID-Hash: 0x8e99fc570ca12731c2a09203fb84b25f93264a234dc1dc6abd8b920a06309794 -Ledger Blake2b hash: Abf5a9UGQ2gcU7V918Pcss2DaTVaqdkBrDYUi55p4Bfh -Raw Sha256 hash: 0x754da3f12fe6c0317d39bc71ff0489d763047648833d3403cdb348c93f9c2678 -Raw Sha512 hash: 0xfc2f3d753f8749bec06d6cccadd8263d69ca4121af57d0fce69b62bdb82173d3403b28cd69eb551827c7b80384d77e48b42be7399f06e310762a80ebcdfb5e1b -Gas remaining: 1039998.872 units remaining - -./octez-client --mode mockup hash data '(Pair 0 (Pair True 0x))' of type 'pair int bool bytes' -Raw packed data: 0x05070700000707030a0a00000000 -Script-expression-ID-Hash: expruJK4yoH9hmZUDgbb5DBtjekERQd913ar43wFgkLVL4eYcFtDsT -Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81cf974b6edd054da22b -Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q -Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd -Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.120 units remaining - -./octez-client --mode mockup hash data '(Pair 0 True 0x)' of type 'pair int bool bytes' -Raw packed data: 0x05070700000707030a0a00000000 -Script-expression-ID-Hash: expruJK4yoH9hmZUDgbb5DBtjekERQd913ar43wFgkLVL4eYcFtDsT -Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81cf974b6edd054da22b -Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q -Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd -Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.120 units remaining - -./octez-client --mode mockup hash data '{0; True; 0x}' of type 'pair int bool bytes' -Raw packed data: 0x05070700000707030a0a00000000 -Script-expression-ID-Hash: expruJK4yoH9hmZUDgbb5DBtjekERQd913ar43wFgkLVL4eYcFtDsT -Raw Script-expression-ID-Hash: 0x6729d37ba0b7c4f8746e53816067fec805fbbd37253d81cf974b6edd054da22b -Ledger Blake2b hash: 7whz5UYUjV52kQv1B1QUoYk1pMwRay1gEsB8XwP5ce5Q -Raw Sha256 hash: 0x2ee3aa1d789b740d21b535384a8ec28c7c375484576f070a0ea03f0ada7917fd -Raw Sha512 hash: 0x83faf6a6c5c205a86087d77460f54a582f285918f45847376b7a722520f69acf23d6a9f09cce2646fcd279f33241ab345e2e17613f0babd1ebc5979713bff784 -Gas remaining: 1039998.120 units remaining - -./octez-client --mode mockup hash data '{}' of type 'set bool' -Raw packed data: 0x050200000000 -Script-expression-ID-Hash: exprvLcRMXArBMo4ZGN2fxbyDgW4hQTTTRd48VUbEwC4o2dMR2YjFP -Raw Script-expression-ID-Hash: 0xf0147b0fcd9ed958297e3e663f25d0427f7f70576f22047a8d52953941a8b057 -Ledger Blake2b hash: HAAxipLZ7LdX9GLgN7p1bX9KneQ82FcCsss3YicsKaAS -Raw Sha256 hash: 0x077e8b5d0b528d84284d773f8cc36da052248bb96c341d68d51b86e0ce098262 -Raw Sha512 hash: 0x7553bc601c56a361eb537e2bcba685ae6fbf3b68003bd9426db318352db433445aee770bab94631ce5bdf29b948caf1665e208c9be33d8b70fa67d2839d4a16a -Gas remaining: 1039999.564 units remaining - -./octez-client --mode mockup hash data '{ 0 ; 3 ; 4 }' of type 'set nat' -Raw packed data: 0x050200000006000000030004 -Script-expression-ID-Hash: expruTArjjBYFarD9wM3cZJWXr4ZGzDNmZ4NzJja4evPDhDaGRRS5F -Raw Script-expression-ID-Hash: 0x7b470c4d4cd099659964e7ae56f49599a16e5c4ddbe03898a7f87b08f8cb4a6f -Ledger Blake2b hash: 9JDyxjR1Pex14hzrrVN6wUuVdug418EbGy9PytyWi36E -Raw Sha256 hash: 0x79b8b0a86bb4e9939b552d8bfc98c50b991ae227235a3d39381349817ebdda9f -Raw Sha512 hash: 0x34de860c30437423f988cff5ed945981ed4b82dc8a9153f1fbb387e3a05d502d494aa3fb627698a2d7d3b769715e24f844274d0a86bbddff3d955d97ba39d410 -Gas remaining: 1039998.106 units remaining - -./octez-client --mode mockup hash data '"ABC\n123"' of type string -Raw packed data: 0x0501000000074142430a313233 -Script-expression-ID-Hash: expru9epr1Q99NjjgfhQBBmLiAb55ATvHcpvXqVfxnjQyAo3qLpTSU -Raw Script-expression-ID-Hash: 0x53804fa1fb0854914ed6562bc7dde5d9c2307bbf5ac70e787a715c113e36d6c6 -Ledger Blake2b hash: 6cxKSKRL7E2Bpg1ZPZkWT7hXgLKyHJxLc5NA2Q2H1jqX -Raw Sha256 hash: 0x3ebab0c348173626afcb9c982d06ee1189fb1a6359eecd33b30af851aacdcc0f -Raw Sha512 hash: 0x086fccde9f22aba378cd47833d9613f6d1cfd3f15fb6a8dde0eb57e1da651de8ef69886a7a4ebbadf50155910d1fbcc9048e0d9acb196be04adf519476d52307 -Gas remaining: 1039999.470 units remaining - -./octez-client --mode mockup hash data '"edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7"' of type signature -Raw packed data: 0x050a0000004049d47dba27bd76208b092f3e500f64818920c817491b8b9094f28c2c2b9c6721b257b8878ce47182122b8ea84aeacd84a8aa28cb1f1fe48a26355a7bca4b8306 -Script-expression-ID-Hash: exprtXK3xDMDMu3vGVkb6m9JxwRb3t62tZZNWZPS6FGCY5oFVcZuaM -Raw Script-expression-ID-Hash: 0x00fc144dd18ae1a2d0c6247aa7dad67b2f8bec1b26984437b4bdf02e2d296783 -Ledger Blake2b hash: 14qwXuZ6GDwjvb9GEyurnLg9ZABtnQUAVuDXuGtFAYhp -Raw Sha256 hash: 0xf432ec1cf86bc818d9dff9f69870eaedbbfaee429f2619500757f3ce1d7bc1a9 -Raw Sha512 hash: 0xd7f46bdf12090e235e59f0a61af1ca90f64f6022bd5df479a62f16fd829c6cec431dc081ee16f0c103eec70be968d3f70ec9f584f8948d31c804a87ddc82b1b3 -Gas remaining: 1039992.529 units remaining - -./octez-client --mode mockup hash data '"spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm"' of type signature -Raw packed data: 0x050a00000040865b0ceaa2decd64fea1b7e0e97d6ae8035125d821ebe99d7d5c8a559f36fdd43388a570e475011f6d2bbef184ece9bafbf0ac12157f7257988e9575ae2cbca9 -Script-expression-ID-Hash: expruiLTZFkM8c6b9yURRmpLK3f7AAQbPQc11DeCSLoWUqGMUwLiSn -Raw Script-expression-ID-Hash: 0x9db673f2907fafceb934a674351b57e76ba2bf9b3ee2f6edac327089ef5aa749 -Ledger Blake2b hash: BceNWVXjPX5jc4D1kauy4Evh21C8q53aQRJFMzEpLXWx -Raw Sha256 hash: 0x42fe71aa3f9fa7d868a2a8aee492b2a559fba87f8c15403ffe753fc0effffd17 -Raw Sha512 hash: 0xc9a9d704af153d9a2d046bd428f817c9db9ec5d52881ac31e28ed1faca821d34b797bee5171855d6f35ecefed7db2800a20639fc1f877672d03b456af7cf296e -Gas remaining: 1039992.529 units remaining - -./octez-client --mode mockup hash data '"foo"' of type string -Raw packed data: 0x050100000003666f6f -Script-expression-ID-Hash: expruTFUPVsqkuD5iwLMJuzoyGSFABnxLo7CZrgnS1czt1WbTwpVrJ -Raw Script-expression-ID-Hash: 0x7b754bee2b13dd9f9486e6f933e27afc2c31765a8414fc98422255138b04a366 -Ledger Blake2b hash: 9JvtJaNHvYP5bpF7tjbbtpr8o7Jtptz445dZ8pemDnvH -Raw Sha256 hash: 0xe9341dd81166c9253032c8296ae443fbe0d6878502c31cdc431407c4f46dd094 -Raw Sha512 hash: 0x8bf21486ea4a0789bf772b75b3cd8f9edace809f79c38146dbbe2d447edf99f9fcc7c53f511063fe9de21b22baa01710ef6a300546fcc6529812128488e91309 -Gas remaining: 1039999.550 units remaining - -./octez-client --mode mockup hash data '"[TIMESTAMP]"' of type timestamp -Raw packed data: 0x0500a7e8e4d80b -Script-expression-ID-Hash: expruPr6RXBVA966PMQk4kFKyiph9smByS7tFn1hKE6RwAv77VxPes -Raw Script-expression-ID-Hash: 0x73bb27e87ad251d54484fc93a59fac977e3e1af83dfaaa33df4cb7646e01ffdf -Ledger Blake2b hash: 8nmQbgYU3gU2uTXAoJ77miKgQicBLCYYWtnoLzvF5k7Q -Raw Sha256 hash: 0x883ec8d70eeb0beb91bb34dbb5a9a49ffdbe79fd99d8a5fe2b5b508381597bce -Raw Sha512 hash: 0x2b7e8c38c164c6fd93d454fc2ac07122c45616cc616e2789bfb77cc023ef005cf97c8fb8e7c38565d52d0a5fd941a5be0e26e0fd323261069445b89f7ba6086a -Gas remaining: 1039999.416 units remaining - -./octez-client --mode mockup hash data 1571659294 of type timestamp -Raw packed data: 0x05009ef8ecda0b -Script-expression-ID-Hash: exprvPBUjsoev8w7shCt9SLykngSNL393Q8xHJS5eTMSrA2KbecS2x -Raw Script-expression-ID-Hash: 0xf5ea5a2add84cb09fcf97c1d6e931a177dc6b47c27859d0a8c67e6a89c87098c -Ledger Blake2b hash: HYx9bgNpSXhVfVKjoToFJ55LGxpZ8NGNwnfZJdGkYJSP -Raw Sha256 hash: 0xa4e6a8748a04d460e75e1420baa3f4e9d53c758f076a0a5e3730941eade9c72f -Raw Sha512 hash: 0x69c9ac176f1c5da7b15e859224d9877da0ecb9ecb84e0fa580405c46f13cc8ea11365502298f45354dc21ddeccd7ad3772c8d11091870536f156a6fc94aad89a -Gas remaining: 1039999.524 units remaining - -./octez-client --mode mockup hash data Unit of type unit -Raw packed data: 0x05030b -Script-expression-ID-Hash: expruaDPoTWXcTR6fiQPy4KZSW72U6Swc1rVmMiP1KdwmCceeEpVjd -Raw Script-expression-ID-Hash: 0x8b456a4530fb6d0fea9a0dcd0e9d6ff6b30d13b05d05cb4a375dd91bf2a7eadc -Ledger Blake2b hash: ANf4YSkDc71Uy14uWg3wL8u49LUAHdVVnVHbSwNKyEJo -Raw Sha256 hash: 0x5f6d1c5a35306dc8be3a54058774f9cb8f1bc71a6a743a253aad0bfe3a43feef -Raw Sha512 hash: 0xe89c39b714a041046cf421532526b466a8ad29a89a4f027954e4dbdc61b4557f54721ba9e12bf4b901d511037d39481379394e7f86a571bba60f2414e2a56b4c -Gas remaining: 1039999.624 units remaining diff --git a/tezt/tests/expected/increase_paid_storage.ml/Nairobi- increase paid storage.out b/tezt/tests/expected/increase_paid_storage.ml/Nairobi- increase paid storage.out deleted file mode 100644 index 80dc621ad653..000000000000 --- a/tezt/tests/expected/increase_paid_storage.ml/Nairobi- increase paid storage.out +++ /dev/null @@ -1,30 +0,0 @@ -Node is bootstrapped. -Estimated gas: 168.648 units (will add 0 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is 'opLmHCaBw2FU5dvWgUE92uyVkKj9yahPCxmLnno1Woa6Dbd5ajr' -NOT waiting for the operation to be included. -Use command - octez-client wait for opLmHCaBw2FU5dvWgUE92uyVkKj9yahPCxmLnno1Woa6Dbd5ajr to be included --confirmations 1 --branch BLockGenesisGenesisGenesisGenesisGenesisf79b5d1CoW2 -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - Fee to the baker: ꜩ0.000265 - Expected counter: 1 - Gas limit: 169 - Storage limit: 0 bytes - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.000265 - payload fees(the block proposer) ....... +ꜩ0.000265 - Increase paid storage: - Increased size: 1000 bytes - From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN - To: KT1FVJKsW99mkHyATPUZm8oybDNUbBZgdzAH - This paid storage increase was successfully applied - Balance updates: - tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.25 - storage fees ........................... +ꜩ0.25 - Consumed gas: 168.582 - - diff --git a/tezt/tests/expected/normalize.ml/Nairobi- Test Michelson stack normalization.out b/tezt/tests/expected/normalize.ml/Nairobi- Test Michelson stack normalization.out deleted file mode 100644 index f589e253f3f7..000000000000 --- a/tezt/tests/expected/normalize.ml/Nairobi- Test Michelson stack normalization.out +++ /dev/null @@ -1,468 +0,0 @@ - -./octez-client --mode mockup normalize stack '{}' -{} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)}' -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10)))}' -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat nat nat nat) (Pair 1 4 7 10)} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10))); Stack_elt (pair nat nat (pair nat nat)) {2; 5; 8; 11}}' -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat nat nat nat) (Pair 1 4 7 10); Stack_elt (pair nat nat nat nat) (Pair 2 5 8 11)} - -./octez-client --mode mockup normalize stack '{}' --unparsing-mode Readable -{} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)}' --unparsing-mode Readable -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10)))}' --unparsing-mode Readable -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat nat nat nat) (Pair 1 4 7 10)} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10))); Stack_elt (pair nat nat (pair nat nat)) {2; 5; 8; 11}}' --unparsing-mode Readable -{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat nat nat nat) (Pair 1 4 7 10); Stack_elt (pair nat nat nat nat) (Pair 2 5 8 11)} - -./octez-client --mode mockup normalize stack '{}' --unparsing-mode Optimized -{} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)}' --unparsing-mode Optimized -{Stack_elt (pair nat nat nat nat) { 0 ; 3 ; 6 ; 9 }} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10)))}' --unparsing-mode Optimized -{Stack_elt (pair nat nat nat nat) { 0 ; 3 ; 6 ; 9 }; Stack_elt (pair nat nat nat nat) { 1 ; 4 ; 7 ; 10 }} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10))); Stack_elt (pair nat nat (pair nat nat)) {2; 5; 8; 11}}' --unparsing-mode Optimized -{Stack_elt (pair nat nat nat nat) { 0 ; 3 ; 6 ; 9 }; Stack_elt (pair nat nat nat nat) { 1 ; 4 ; 7 ; 10 }; Stack_elt (pair nat nat nat nat) { 2 ; 5 ; 8 ; 11 }} - -./octez-client --mode mockup normalize stack '{}' --unparsing-mode Optimized_legacy -{} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9)}' --unparsing-mode Optimized_legacy -{Stack_elt (pair nat nat nat nat) (Pair 0 (Pair 3 (Pair 6 9)))} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10)))}' --unparsing-mode Optimized_legacy -{Stack_elt (pair nat nat nat nat) (Pair 0 (Pair 3 (Pair 6 9))); Stack_elt (pair nat nat nat nat) (Pair 1 (Pair 4 (Pair 7 10)))} - -./octez-client --mode mockup normalize stack '{Stack_elt (pair nat nat nat nat) (Pair 0 3 6 9); Stack_elt (pair nat (pair nat (pair nat nat))) (Pair 1 (Pair 4 (Pair 7 10))); Stack_elt (pair nat nat (pair nat nat)) {2; 5; 8; 11}}' --unparsing-mode Optimized_legacy -{Stack_elt (pair nat nat nat nat) (Pair 0 (Pair 3 (Pair 6 9))); Stack_elt (pair nat nat nat nat) (Pair 1 (Pair 4 (Pair 7 10))); Stack_elt (pair nat nat nat nat) (Pair 2 (Pair 5 (Pair 8 11)))} - -./octez-client --mode mockup normalize stack -Error: - Erroneous command line argument 3 (). - empty expression - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack '{' -Error: - Erroneous command line argument 3 ({). - At line 1 characters 0 to 1, unclosed curly brace - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack 0 -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got 0. - -./octez-client --mode mockup normalize stack '{Stack_elt}' -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack '{Stack_elt nat}' -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat. - -./octez-client --mode mockup normalize stack '{Stack_elt 0 nat}' -At (unshown) location 0, unexpected int, only a primitive can be used here. -Fatal error: - ill-typed stack - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0 1}' -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 1 }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat 0 1. - -./octez-client --mode mockup normalize stack 'Stack_elt nat 0' -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got Stack_elt nat 0. - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0; Stack_elt}' -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 ; Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack --unparsing-mode Readable -Error: - Erroneous command line argument 3 (). - empty expression - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack '{' --unparsing-mode Readable -Error: - Erroneous command line argument 3 ({). - At line 1 characters 0 to 1, unclosed curly brace - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack 0 --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got 0. - -./octez-client --mode mockup normalize stack '{Stack_elt}' --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack '{Stack_elt nat}' --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat. - -./octez-client --mode mockup normalize stack '{Stack_elt 0 nat}' --unparsing-mode Readable -At (unshown) location 0, unexpected int, only a primitive can be used here. -Fatal error: - ill-typed stack - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0 1}' --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 1 }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat 0 1. - -./octez-client --mode mockup normalize stack 'Stack_elt nat 0' --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got Stack_elt nat 0. - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0; Stack_elt}' --unparsing-mode Readable -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 ; Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack --unparsing-mode Optimized -Error: - Erroneous command line argument 3 (). - empty expression - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack '{' --unparsing-mode Optimized -Error: - Erroneous command line argument 3 ({). - At line 1 characters 0 to 1, unclosed curly brace - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack 0 --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got 0. - -./octez-client --mode mockup normalize stack '{Stack_elt}' --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack '{Stack_elt nat}' --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat. - -./octez-client --mode mockup normalize stack '{Stack_elt 0 nat}' --unparsing-mode Optimized -At (unshown) location 0, unexpected int, only a primitive can be used here. -Fatal error: - ill-typed stack - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0 1}' --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 1 }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat 0 1. - -./octez-client --mode mockup normalize stack 'Stack_elt nat 0' --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got Stack_elt nat 0. - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0; Stack_elt}' --unparsing-mode Optimized -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 ; Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack --unparsing-mode Optimized_legacy -Error: - Erroneous command line argument 3 (). - empty expression - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack '{' --unparsing-mode Optimized_legacy -Error: - Erroneous command line argument 3 ({). - At line 1 characters 0 to 1, unclosed curly brace - -Usage: - octez-client [global options] command [command options] - octez-client --help (for global options) - octez-client [global options] command --help (for command options) - octez-client --version (for version information) - -To browse the documentation: - octez-client [global options] man (for a list of commands) - octez-client [global options] man -v 3 (for the full manual) - -Global options (must come before the command): - -d --base-dir : client data directory (absent: TEZOS_CLIENT_DIR env) - -n --no-base-dir-warnings: silence warnings about client data directory - -c --config-file : configuration file - -t --timings: show RPC request times - --chain : chain on which to apply contextual commands (commands dependent on the context associated with the specified chain). Possible tags are 'main' and 'test'. - -b --block : block on which to apply contextual commands (commands dependent on the context associated with the specified block). Possible tags include 'head' and 'genesis' +/- an optional offset (e.g. "octez-client -b head-1 get timestamp"). Note that block queried must exist in node's storage. - -w --wait >: how many confirmation blocks are needed before an operation is considered included - -p --protocol : use commands of a specific protocol - -l --log-requests: log all requests to the node - --better-errors: Error reporting is more detailed. Can be used if a call to an RPC fails or if you don't know the input accepted by the RPC. It may happen that the RPC calls take more time however. - -A --addr : [DEPRECATED: use --endpoint instead] IP address of the node - -P --port : [DEPRECATED: use --endpoint instead] RPC port of the node - -S --tls: [DEPRECATED: use --endpoint instead] use TLS to connect to node. - -m --media-type : Sets the "media-type" value for the "accept" header for RPC requests to the node. The media accept header indicates to the node which format of data serialisation is supported. Use the value "json" for serialisation to the JSON format. - -E --endpoint : HTTP(S) endpoint of the node RPC interface; e.g. 'http://localhost:8732' - -s --sources : path to JSON file containing sources for --mode light. Example file content: {"min_agreement": 1.0, "uris": ["http://localhost:8732", "https://localhost:8733"]} - -R --remote-signer : URI of the remote signer - -f --password-filename : path to the password filename - -M --mode : how to interact with the node - -./octez-client --mode mockup normalize stack 0 --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got 0. - -./octez-client --mode mockup normalize stack '{Stack_elt}' --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. - -./octez-client --mode mockup normalize stack '{Stack_elt nat}' --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat. - -./octez-client --mode mockup normalize stack '{Stack_elt 0 nat}' --unparsing-mode Optimized_legacy -At (unshown) location 0, unexpected int, only a primitive can be used here. -Fatal error: - ill-typed stack - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0 1}' --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 1 }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt nat 0 1. - -./octez-client --mode mockup normalize stack 'Stack_elt nat 0' --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got Stack_elt nat 0. - -./octez-client --mode mockup normalize stack '{Stack_elt nat 0; Stack_elt}' --unparsing-mode Optimized_legacy -Error: - Unexpected format for a typed stack. Expected a sequence of Stack_elt ; got { Stack_elt nat 0 ; Stack_elt }. - Unexpected format for an item in a typed stack. Expected: Stack_elt ; got Stack_elt. diff --git a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize in unparsing mode.out b/tezt/tests/expected/normalize.ml/Nairobi- Test normalize in unparsing mode.out deleted file mode 100644 index 80323b4574cb..000000000000 --- a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize in unparsing mode.out +++ /dev/null @@ -1,14 +0,0 @@ - -./octez-client --mode mockup normalize data '{Pair 0 3 6 9; Pair 1 (Pair 4 (Pair 7 10)); {2; 5; 8; 11}}' of type 'list (pair nat nat nat nat)' -{ Pair 0 3 6 9 ; Pair 1 4 7 10 ; Pair 2 5 8 11 } - -./octez-client --mode mockup normalize data '{Pair 0 3 6 9; Pair 1 (Pair 4 (Pair 7 10)); {2; 5; 8; 11}}' of type 'list (pair nat nat nat nat)' --unparsing-mode Readable -{ Pair 0 3 6 9 ; Pair 1 4 7 10 ; Pair 2 5 8 11 } - -./octez-client --mode mockup normalize data '{Pair 0 3 6 9; Pair 1 (Pair 4 (Pair 7 10)); {2; 5; 8; 11}}' of type 'list (pair nat nat nat nat)' --unparsing-mode Optimized -{ { 0 ; 3 ; 6 ; 9 } ; { 1 ; 4 ; 7 ; 10 } ; { 2 ; 5 ; 8 ; 11 } } - -./octez-client --mode mockup normalize data '{Pair 0 3 6 9; Pair 1 (Pair 4 (Pair 7 10)); {2; 5; 8; 11}}' of type 'list (pair nat nat nat nat)' --unparsing-mode Optimized_legacy -{ Pair 0 (Pair 3 (Pair 6 9)) ; - Pair 1 (Pair 4 (Pair 7 10)) ; - Pair 2 (Pair 5 (Pair 8 11)) } diff --git a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize script.out b/tezt/tests/expected/normalize.ml/Nairobi- Test normalize script.out deleted file mode 100644 index b4642bc280ed..000000000000 --- a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize script.out +++ /dev/null @@ -1,42 +0,0 @@ - -./octez-client --mode mockup normalize script michelson_test_scripts/opcodes/comb-literals.tz -{ parameter unit ; - storage unit ; - code { PUSH (list (pair nat nat nat nat)) - { Pair 0 3 6 9 ; Pair 1 4 7 10 ; Pair 2 5 8 11 } ; - DROP 2 ; - UNIT ; - NIL operation ; - PAIR } } - -./octez-client --mode mockup normalize script michelson_test_scripts/opcodes/comb-literals.tz --unparsing-mode Readable -{ parameter unit ; - storage unit ; - code { PUSH (list (pair nat nat nat nat)) - { Pair 0 3 6 9 ; Pair 1 4 7 10 ; Pair 2 5 8 11 } ; - DROP 2 ; - UNIT ; - NIL operation ; - PAIR } } - -./octez-client --mode mockup normalize script michelson_test_scripts/opcodes/comb-literals.tz --unparsing-mode Optimized -{ parameter unit ; - storage unit ; - code { PUSH (list (pair nat nat nat nat)) - { { 0 ; 3 ; 6 ; 9 } ; { 1 ; 4 ; 7 ; 10 } ; { 2 ; 5 ; 8 ; 11 } } ; - DROP 2 ; - UNIT ; - NIL operation ; - PAIR } } - -./octez-client --mode mockup normalize script michelson_test_scripts/opcodes/comb-literals.tz --unparsing-mode Optimized_legacy -{ parameter unit ; - storage unit ; - code { PUSH (list (pair nat nat nat nat)) - { Pair 0 (Pair 3 (Pair 6 9)) ; - Pair 1 (Pair 4 (Pair 7 10)) ; - Pair 2 (Pair 5 (Pair 8 11)) } ; - DROP 2 ; - UNIT ; - NIL operation ; - PAIR } } diff --git a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize type.out b/tezt/tests/expected/normalize.ml/Nairobi- Test normalize type.out deleted file mode 100644 index c35ef0e62ff8..000000000000 --- a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize type.out +++ /dev/null @@ -1,24 +0,0 @@ - -./octez-client --mode mockup normalize type nat -nat - -./octez-client --mode mockup normalize type 'list nat' -list nat - -./octez-client --mode mockup normalize type 'pair nat int' -pair nat int - -./octez-client --mode mockup normalize type 'list (pair nat int)' -list (pair nat int) - -./octez-client --mode mockup normalize type 'pair nat int bool' -pair nat (pair int bool) - -./octez-client --mode mockup normalize type 'list (pair nat int bool)' -list (pair nat (pair int bool)) - -./octez-client --mode mockup normalize type 'pair nat int bool bytes' -pair nat (pair int (pair bool bytes)) - -./octez-client --mode mockup normalize type 'list (pair nat int bool bytes)' -list (pair nat (pair int (pair bool bytes))) diff --git a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize with legacy flag.out b/tezt/tests/expected/normalize.ml/Nairobi- Test normalize with legacy flag.out deleted file mode 100644 index 8ecc6976ccf6..000000000000 --- a/tezt/tests/expected/normalize.ml/Nairobi- Test normalize with legacy flag.out +++ /dev/null @@ -1,10 +0,0 @@ - -./octez-client --mode mockup normalize data '{Elt %a 0 1}' of type 'map nat nat' --legacy -{ Elt 0 1 } - -./octez-client --mode mockup normalize data '{Elt %a 0 1}' of type 'map nat nat' -At (unshown) location 0, value { Elt %a 0 1 } -is invalid for type map nat nat. -At (unshown) location 1, unexpected annotation. -Fatal error: - ill-typed data expression diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - RPC API should work and be stable.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - RPC API should work and be stable.out deleted file mode 100644 index 439815f7558d..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - RPC API should work and be stable.out +++ /dev/null @@ -1,261 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind arith of type string with kernel --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.157 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000551 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000551 - payload fees(the block proposer) ....... +ꜩ0.000551 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' - This smart rollup origination was successfully applied - Consumed gas: 1920.124 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" -GET http://[HOST]:[PORT]/global/smart_rollup_address -200 OK -"[SMART_ROLLUP_HASH]" - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "312d31", - "312d32", - "312d33", - "312d34", - "312d35" -] -200 OK -["scmsg37MjxsWwLdnhRqRn8suc1oMvpa9riqGvazTg7giMNKDDU56Qfv","scmsg3X1MAjzt2B4r6gZnLf7mzoRf9UohkLw3Q2DTzLKctivKPYLXZ9","scmsg3prfVZhL8jFf5LSmxijjd96pKcz98ws6xe81qKagYcSg53e22N","scmsg2SY3VZWZ8y8491xbXvn8tQtHRCAq3zPJWQ7n4K6Rusw2YKVyNx","scmsg2zdjgY1tnuHMZqMavgPyc7qNj9MMvY4ywd38yauj3WfaiqDieE"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "322d31", - "322d32", - "322d33", - "322d34", - "322d35" -] -200 OK -["scmsg33G4qMwJ869CUzuYWpsdF9bnQ4ezN2YHyERN64j2Q4t9L99CnA","scmsg3ew4TRYot9RPWjagZdNGdSTD3wzUAKU5WFz6JosGBtEr1UT5o5","scmsg3Q6eecZLng9BK7maLP1DGqRpfbygCsQj8vPxc3USjpQxhCfEkn","scmsg2GAoC8FEUfHZfQAKotvjRMpmSknHRpn4w35Y1YWZ4uVZDYvzUL","scmsg2sqy4npoYQq8iWJWQQgrdG126y3Btxn8ZzVPav8JmptWnVowGz"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "332d31", - "332d32", - "332d33", - "332d34", - "332d35" -] -200 OK -["scmsg3EYkw2o4MC45NXUKZsEpzugW9sfumidS78TC8ygnJJznyAe9Yb","scmsg23CHWGTe3u8Utu3RpafBSEzvwnBKNRLxufPp8QindEWanu8UB6","scmsg3WnqzTRN8wvANvLKV4MouiTQZzq7X2G3CfKcomuQy4nKDFGRhX","scmsg3PVb7jXpE723XWdC1B8L34wVenMTi8r4b62Qja6owSMVo3h73C","scmsg2BZBgg1AFG7Zsar6DD1ZKPK36UakNZNj78npg6SUBoR26FpBdQ"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "342d31", - "342d32", - "342d33", - "342d34", - "342d35" -] -200 OK -["scmsg3BLN9sVbJN6BrDh8mu3yDYeVfTBnm83Ciom55sS3dKvvXMk1nR","scmsg2Nsbi6zbwQUTwpBVcTEhi7oVWxbuka1kiHMJ9BLiUg8QfzyLYM","scmsg3Ti1eX6WyPXKjy3NdkJnQdzi5RbkFJ8piWhEpDQwWn8VdNMuCK","scmsg3TMS4Q8jtUhr6YcgkMqwWAXKkXLJMhSRvJcMEgq61t8xftRMFv","scmsg2AWA1jULPBJb7usha9gJg62T5PdiW9Uz1HdHLhaYDRx4qRvLTL"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "352d31", - "352d32", - "352d33", - "352d34", - "352d35" -] -200 OK -["scmsg26t9x2GH9Pt9hiGLnSyNRALPzL8BYcTHik6PvU4vGDbUYM6JkV","scmsg3rtv5BpkWSR835sbwXJDBYZZW1ptXr8KKxprn4nJnhSacn6t1R","scmsg32QBihqJwKecppnv3o4MpRVYycR6puAHyhZhDVtewFQwmTdR3Z","scmsg3LQsvXBvj1qDWFRACbLuyAbZK6tHVTUeiYsPSU9KGxyf6ySxrY","scmsg3oXBwG2rAT3cjgDbRNyBnTirrkqTAeVMxMSJ5KUno8daWpY2rL"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "362d31", - "362d32", - "362d33", - "362d34", - "362d35" -] -200 OK -["scmsg2pUJoCjenPKAK3WnftrcnnKFf8RjTmoie2PS5Xa9jh2f6V4CpU","scmsg3M61S4suJDXn1yZyQrk9iy3WrDTXbPA6JHaeDWMjUJ4bhFTyAf","scmsg3SSJRKjcqvMFg2y6tuKWbikFx49kE5PfGg71uhxYdoMHBzutgU","scmsg3MPjHQ6m6BPJaGnAan8kCnadyCbn37DKAZa7LTbTtz3N36JgtW","scmsg2mUAHp9G2cJoqKwr4dpagFK6Wa4cNu7NGPXXB3zTfCpLmCP3Yr"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "372d31", - "372d32", - "372d33", - "372d34", - "372d35" -] -200 OK -["scmsg2VzSQUy8uj6yXYjwhLp2Qsmr77NixYmsXqqBGJpGsSxVBZHBPN","scmsg2p1iyQ4MHjNZrZhRmatcGXCzSr3Af7GKg6jawijWAe5ZpwFUMR","scmsg2xU6itfmj6XeuzYVqGza4Z95uAUXG44mnkM8uKkkdmbv8DyhS3","scmsg3YhsmhbfMXKmhsjGXej2ySwYFDYKQE1yUs7LcVkZ2ikaotWQKg","scmsg28neefD54Wsf46QgPtv22mKT32oNFv5ToU95DDsufcWFCZoovM"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "382d31", - "382d32", - "382d33", - "382d34", - "382d35" -] -200 OK -["scmsg3krb3ZX2JqPJkoBkrrFJcEtguu4sJDFS1XukN4PboYfxVRMZB8","scmsg2CXLxs8exJxS49Fi1bQFHhyy27fpTUwNZ8xhbuyd2uo4YmgWYL","scmsg2XJwuzAw5tZhfiTpUoDNSiM56W97YNEB4YyzGnrBcEgYpL9KMh","scmsg3RM54nLATBFqzCjvSwPybSbiiWJZey2ZiLbe1gjr9v9Vmoc9H3","scmsg2NpFWt1MhyDGhacEUpaeEheC8XWzNC3LaNaECXwzpi39QqPX14"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "392d31", - "392d32", - "392d33", - "392d34", - "392d35" -] -200 OK -["scmsg2nWa7VYthVQxL9antueegTTcyGzTqZzbFPVibWk8xzRGWvfdt8","scmsg3KfqCW3JtQAFWYUUKfaxUZ3zeR8t6233UU5frsUgZXjwyRaftR","scmsg2TJRQjXv5VYgrcVYM4upqfptRz4gLmDV1AMLcxqGJz2faoKfDK","scmsg2DBhcJVTm8JRWQHLWDXxiCi2PvUZzixqxkqyYupDZW2XU3cdvJ","scmsg2jKWtDbw5Jsdpc453XsgAVBKyYUzt3pKKsZtQNtvJvhPemp4WN"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31302d31", - "31302d32", - "31302d33", - "31302d34", - "31302d35" -] -200 OK -["scmsg3hFFdb5QTM1kbP7UmHviyd6VWfYaT9KTWDcTjE51BtRdjbCJjq","scmsg318GJr61qixBt6P4BxuUZ9zXZGct9fpknY7bky676r8esQjLrt","scmsg2twRwJCXXzvMYcD4Zu3zQSkHjhsDs9ZBczAi4Lvx7ogvJmeCGZ","scmsg3YFj784yYxTr4LbNfaLpHGpN5hKJgbBA8gUEJ4vief5KL8U5vS","scmsg2GY9Q5VTRSrjCPewduDXtPtZZ9hhMshPe3zUToBvFHTD9AhKkB"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31312d31", - "31312d32", - "31312d33", - "31312d34", - "31312d35" -] -200 OK -["scmsg2S7XcHeyAHTQy6cJ6pVgxYqdW7XTBz3PsiCx26gyp2EHfCUJTh","scmsg34AzeCpQWbx2MicoEqumBeh5PzkmeB3XkASNCeEn4u5AC2TQtC","scmsg23m7SEy65fobQJ22FS7dmnHqPe2pmpCaA5iVWA8KYm4ZU3CVfK","scmsg3KLGXHeokSBbJcfsrvRkoAjMt5Yi7nj67WFHh6nkW8Ce8Kd4yn","scmsg2Eaop6LYBSnKMQXqPWijq9fBa4nPw5ZLndHRCH97kumZqLT7pn"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31322d31", - "31322d32", - "31322d33", - "31322d34", - "31322d35" -] -200 OK -["scmsg3Rbcvi4zn7DSuXY8FHordHD4BMqXGi8XhrYAg9Z369qN2qPuPf","scmsg2JtmeQPL8JBY2MgEKx5f6XvH1bJjnqrjTpPVapmDaVBVcGHf8L","scmsg2xrhpVNNsUzYNF7LsNmeAbX2wJsZWE8Ub7DQRe8sToXxSjKR4T","scmsg3HMVWn75kiJ4Lr3KquJNQTkkFtwg9pmiKMythhUJ5h74Nznjd3","scmsg24y1317Sy46HnzTpvCLRe88LghadZ4eAjkb6EzvEsQVRhPbKzu"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31332d31", - "31332d32", - "31332d33", - "31332d34", - "31332d35" -] -200 OK -["scmsg2vjhNLAF3AeKmzkWbwkVELTGnQcEdsPeD6imGgeejsQta46LxA","scmsg2mQYGCav4HTBebHEeeVscAeMGL8d17eDZSCeTEBsukRyri51mZ","scmsg3CyDxp7PAws2HXGTyCeeamNDCs3acBnN7Jymj3GVW3WCS1GKEz","scmsg2Safqm8tXs1k51v1A7VMyALCDRn5DAgYCJ9kbUD38jwPqtob6B","scmsg28V9X7iiXCDZM4mFCHKsMxuvc8wNopLGkcnZwo14sSs4dW1E73"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31342d31", - "31342d32", - "31342d33", - "31342d34", - "31342d35" -] -200 OK -["scmsg2LeoW8SZzjCREGXpS2kwSfWCQBLf4M39gCQbuo7MPdcNUQgskZ","scmsg3KJEQRBNfv4DUb4LCA7EWAh9swowVibwH4Hx7CYn4mjFTEKNfC","scmsg2fWu16weRJCcgdvJzNtdWDNATvftgUVFfpgi5z3BDn9h2zE1Z2","scmsg29adqVUp1NnCAVSZVaKCVbrUdMth3C1yuUvBRZtmW9hsDtm8d1","scmsg2cDM9bscYDvXwkeB6h7RmN82wFgmL3wv5jJmwJukS9ju5zgKWA"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31352d31", - "31352d32", - "31352d33", - "31352d34", - "31352d35" -] -200 OK -["scmsg2DSE1zcsJXhEFsAFMo3qN7jV13LoxrG6qa1RaJtUFkPgJCBN5R","scmsg2StxsCnbG5vQmzdiY3F4M5bsrkb6Qh3CyrMod5thRVAbZHd38c","scmsg3fzM3qS4iPZ6qGHCNfupVUKiuYmrNe4k13uUj3ggrzX6rayaVA","scmsg3qHUB6rys7GmC8XGGKRDrcKX2veZGkT9SkScHyWqLUCjq9PLjx","scmsg3ZVMYBmAPwFfLDNXFDcBGzRChdFzLJ8tUMW46mGPGumZ6aq79q"] - -GET http://[HOST]:[PORT]/global/block/head/hash -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/block/5/hash -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/block/finalized/level -200 OK -16 - -GET http://[HOST]:[PORT]/global/block/head/num_messages -200 OK -"8" - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/value?key=/readonly/wasm_version -404 Not Found - -GET http://[HOST]:[PORT]/global/block/head/durable/arith/value?key=/readonly/wasm_version -404 Not Found - -GET http://[HOST]:[PORT]/global/block/head/status -200 OK -"Waiting for input message" - -GET http://[HOST]:[PORT]/global/block/head/ticks -200 OK -"28" - -GET http://[HOST]:[PORT]/global/block/head/state_hash -200 OK -"[SC_ROLLUP_PVM_STATE_HASH]" - -GET http://[HOST]:[PORT]/global/tezos_head -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/tezos_level -200 OK -18 - diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - boot sector is evaluated.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - boot sector is evaluated.out deleted file mode 100644 index 1d57ec0c7b84..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - boot sector is evaluated.out +++ /dev/null @@ -1,92 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind arith of type string with kernel '10 10 10 + +' --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.554 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000563 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000563 - payload fees(the block proposer) ....... +ꜩ0.000563 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: '8eb6ccf70902fcd3fa2040cf27dda202a71d85625516f22a0c9c67fc86057a7b' - This smart rollup origination was successfully applied - Consumed gas: 1920.521 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" - -./octez-client --wait none originate smart rollup rollup2 from bootstrap2 of kind arith of type string with kernel 31 --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.223 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: 'b682df8c87f218dfa8151f2eaafe20e6f8d87b243f8fe63de6d49485a8bf6eea' - This smart rollup origination was successfully applied - Consumed gas: 1920.190 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup2" - -./octez-client rpc get '/chains/main/blocks/head/context/smart_rollups/smart_rollup/[SMART_ROLLUP_HASH]/genesis_info' -{ "level": 2, - "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/smart_rollups/smart_rollup/[SMART_ROLLUP_HASH]/commitment/[SC_ROLLUP_COMMITMENT_HASH]' -{ "compressed_state": - "[SC_ROLLUP_PVM_STATE_HASH]", - "inbox_level": 2, - "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" } - -./octez-client rpc get '/chains/main/blocks/head/context/smart_rollups/smart_rollup/[SMART_ROLLUP_HASH]/genesis_info' -{ "level": 3, - "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } - -./octez-client rpc get '/chains/main/blocks/head/context/smart_rollups/smart_rollup/[SMART_ROLLUP_HASH]/commitment/[SC_ROLLUP_COMMITMENT_HASH]' -{ "compressed_state": - "[SC_ROLLUP_PVM_STATE_HASH]", - "inbox_level": 3, - "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" } diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - origination of a SCORU executes without error.out deleted file mode 100644 index 0b817c05b2c3..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - origination of a SCORU executes without error.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind arith of type string with kernel --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.157 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000551 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000551 - payload fees(the block proposer) ....... +ꜩ0.000551 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' - This smart rollup origination was successfully applied - Consumed gas: 1920.124 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - participant of a refutation game are slashed-rewarded.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - participant of a refutation game are slashed-rewarded.out deleted file mode 100644 index 1b993f7d0210..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - participant of a refutation game are slashed-rewarded.out +++ /dev/null @@ -1,141 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind arith of type string with kernel --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.157 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000551 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000551 - payload fees(the block proposer) ....... +ꜩ0.000551 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' - This smart rollup origination was successfully applied - Consumed gas: 1920.124 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" - -./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 4 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 -Node is bootstrapped. -Estimated gas: 6368.924 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000967 - Expected counter: 1 - Gas limit: 6469 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000967 - payload fees(the block proposer) ....... +ꜩ0.000967 - Smart rollup commitment publishing: - Address: [SMART_ROLLUP_HASH] - Commitment: - compressed_state: [SC_ROLLUP_PVM_STATE_HASH] - inbox_level: 4 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 1 - This smart rollup commitment publishing was successfully applied - Consumed gas: 6368.858 - Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] - Commitment published at level: 6 - Balance updates: - [PUBLIC_KEY_HASH] ...................................................... -ꜩ10000 - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... +ꜩ10000 - - -./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 4 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 2 -Node is bootstrapped. -Estimated gas: 7067.126 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.001037 - Expected counter: 1 - Gas limit: 7168 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.001037 - payload fees(the block proposer) ....... +ꜩ0.001037 - Smart rollup commitment publishing: - Address: [SMART_ROLLUP_HASH] - Commitment: - compressed_state: [SC_ROLLUP_PVM_STATE_HASH] - inbox_level: 4 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 2 - This smart rollup commitment publishing was successfully applied - Consumed gas: 7067.060 - Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] - Commitment published at level: 7 - Balance updates: - [PUBLIC_KEY_HASH] ...................................................... -ꜩ10000 - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... +ꜩ10000 - - -./octez-client --wait none timeout dispute on smart rollup '[SMART_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' against '[PUBLIC_KEY_HASH]' from bootstrap1 -Node is bootstrapped. -Estimated gas: 3715.525 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000668 - Expected counter: 2 - Gas limit: 3816 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000668 - payload fees(the block proposer) ....... +ꜩ0.000668 - Smart rollup refutation timeout: - Address: [SMART_ROLLUP_HASH] - First staker (Alice): [PUBLIC_KEY_HASH] - Second staker (Bob): [PUBLIC_KEY_HASH] - This smart rollup refutation timeout was successfully applied - Consumed gas: 3715.459 - Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout - Balance updates: - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... -ꜩ10000 - smart rollup refutation punishments ....................................................... +ꜩ10000 - smart rollup refutation rewards ........................................................... -ꜩ5000 - [PUBLIC_KEY_HASH] ...................................................... +ꜩ5000 - diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - recover bond of stakers.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - recover bond of stakers.out deleted file mode 100644 index 85c9d09944f7..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - recover bond of stakers.out +++ /dev/null @@ -1,196 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind arith of type string with kernel --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1920.157 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000551 - Expected counter: 1 - Gas limit: 2021 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000551 - payload fees(the block proposer) ....... +ꜩ0.000551 - Smart rollup origination: - Kind: arith - Parameter type: string - Kernel Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' - This smart rollup origination was successfully applied - Consumed gas: 1920.124 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" - -./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 12 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 -Node is bootstrapped. -Estimated gas: 6368.924 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000967 - Expected counter: 2 - Gas limit: 6469 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000967 - payload fees(the block proposer) ....... +ꜩ0.000967 - Smart rollup commitment publishing: - Address: [SMART_ROLLUP_HASH] - Commitment: - compressed_state: [SC_ROLLUP_PVM_STATE_HASH] - inbox_level: 12 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 1 - This smart rollup commitment publishing was successfully applied - Consumed gas: 6368.858 - Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] - Commitment published at level: 14 - Balance updates: - [PUBLIC_KEY_HASH] ...................................................... -ꜩ10000 - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... +ꜩ10000 - - -./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 12 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 -Node is bootstrapped. -Estimated gas: 6590.852 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00099 - Expected counter: 1 - Gas limit: 6691 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00099 - payload fees(the block proposer) ....... +ꜩ0.00099 - Smart rollup commitment publishing: - Address: [SMART_ROLLUP_HASH] - Commitment: - compressed_state: [SC_ROLLUP_PVM_STATE_HASH] - inbox_level: 12 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 1 - This smart rollup commitment publishing was successfully applied - Consumed gas: 6590.786 - Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] - Commitment published at level: 14 - Balance updates: - [PUBLIC_KEY_HASH] ...................................................... -ꜩ10000 - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... +ꜩ10000 - - -./octez-client --wait none cement commitment '[SC_ROLLUP_COMMITMENT_HASH]' from bootstrap1 for smart rollup '[SMART_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 4840.322 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000771 - Expected counter: 3 - Gas limit: 4941 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000771 - payload fees(the block proposer) ....... +ꜩ0.000771 - Smart rollup commitment cementing: - Address: [SMART_ROLLUP_HASH] - Commitment: [SC_ROLLUP_COMMITMENT_HASH] - This smart rollup commitment cementing was successfully applied - Consumed gas: 4840.256 - Inbox level: 12 - Commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - - -./octez-client --wait none recover bond of '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' --fee 1 -Node is bootstrapped. -Estimated gas: 3084.518 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ1 - Expected counter: 4 - Gas limit: 3185 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1 - payload fees(the block proposer) ....... +ꜩ1 - Smart rollup bond retrieval: - Address: [SMART_ROLLUP_HASH] - Staker: [PUBLIC_KEY_HASH] - This smart rollup bond retrieval was successfully applied - Balance updates: - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... -ꜩ10000 - [PUBLIC_KEY_HASH] ...................................................... +ꜩ10000 - Consumed gas: 3084.418 - - -./octez-client --wait none recover bond of '[PUBLIC_KEY_HASH]' for smart rollup '[SMART_ROLLUP_HASH]' from '[PUBLIC_KEY_HASH]' --fee 1 -Node is bootstrapped. -Estimated gas: 3084.518 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ1 - Expected counter: 5 - Gas limit: 3185 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1 - payload fees(the block proposer) ....... +ꜩ1 - Smart rollup bond retrieval: - Address: [SMART_ROLLUP_HASH] - Staker: [PUBLIC_KEY_HASH] - This smart rollup bond retrieval was successfully applied - Balance updates: - Frozen_bonds([PUBLIC_KEY_HASH],[SMART_ROLLUP_HASH]) ... -ꜩ10000 - [PUBLIC_KEY_HASH] ...................................................... +ꜩ10000 - Consumed gas: 3084.418 - diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_new).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_new).out deleted file mode 100644 index ff62a6963a4c..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_new).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "417", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs13LkDAdzCVqJGHN2ZsjVhD4wKuE9fHj62DTAvJQn2JeTBBcHuf6", - "tick": "13" - }, - { - "state": "srs12sSp6Qj3jVsUV2vjN5fLip878sqPeJe1xZRMWXcya1PUwJdotw", - "tick": "26" - }, - { - "state": "srs11qz4B8om9ScNLonUYt2xRCCXiYrVSnEhstGmQR1mtNXVgd76Na", - "tick": "39" - }, - { - "state": "srs12sCHEaZWFoKPG3mBQbQK828KjEUnWDyP7oryH6b2hTVd5jP3D1", - "tick": "52" - }, - { - "state": "srs12x851PiWmxoSPURL9w7eFaRi43K8fXnB14ur61AdLMJ4rMLo1X", - "tick": "65" - }, - { - "state": "srs13MWVTAW2b3zogN84GWEgGTuKUpRutuFokmCTyLNJJk1N4qqujD", - "tick": "78" - }, - { - "state": "srs11YwcEVnTHU7TSy88Qu4159kSwjCXL4WNpLRVegyxChJMNjpmqt", - "tick": "91" - }, - { - "state": "srs131AcuyhGy52Q5fw45TUK3fqfoQwwTgCFaS5VMCW6GYUgHQY53s", - "tick": "104" - }, - { - "state": "srs12s9TiZcz4QEUebcb3o4tDrP1qQAhbrf1skPJBxei1ftgLMR65L", - "tick": "117" - }, - { - "state": "srs12Jdh38xqRLnW7foDV52wDniG7wnsezkudkj1fhbq1QsJyfVbuL", - "tick": "130" - }, - { - "state": "srs12sWp57pxuPqH3tNzVr7m74EjHTyAm8Za7Zdv9r1NwVYKk82pHJ", - "tick": "143" - }, - { - "state": "srs12wWrHRw1Y9s8nUniLSPaCv37u2hjseCk7QLLiR8gkLF2vvrN8W", - "tick": "156" - }, - { - "state": "srs12si3xayLHCyRGkKgUwGjgc4Ur8LTQc6TQp6JHJhktzL9cse7QA", - "tick": "169" - }, - { - "state": "srs11Ztt7JHZKZAxvA3bxRwiaQJPmabQfuQx5RqNa4xSXXeAU7sc8x", - "tick": "182" - }, - { - "state": "srs139mJkMzo5tPNixrhBU2LdZwdTxqryL35qkLh37wXmM8awDy2NM", - "tick": "195" - }, - { - "state": "srs131TNtRPgQAz9KcBGo9zBNc8n81o4HUJhnBJpafUbGz1dTiqPBU", - "tick": "208" - }, - { - "state": "srs136saATts5dMhpqfsXF9bR96XYG3ZFwPEjemVgctkcFEd4M8XqD", - "tick": "221" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs12fxttGCazcYnBiVqqw3EdGGjGWSd5rbrf73WJPrTnJZznL57aE", - "tick": "260" - }, - { - "state": "srs11UCqZzuKiFRkrFrphQx4ijCMVbSx4KwFVRLhuznvqyfhVvLocw", - "tick": "273" - }, - { - "state": "srs131Sk1U8p6gouJ1Q43kEYvC9cR78cFf7jMkMjgPN4UZepBAeUCD", - "tick": "286" - }, - { - "state": "srs13KUjS1VY9D6kn52sDx2fZAcFLXpxBFE9CeFSfBa2DbNDA7mXcv", - "tick": "299" - }, - { - "state": "srs12tJd5fq1LtEHBFoVQpgZY5JdgKnPRjSdeBB9N96zQePxHvadZQ", - "tick": "312" - }, - { - "state": "srs132pUbC4ao1jnNgofqnCGr9joGBY1UMn37WadqwGbHtMG1r9gBQ", - "tick": "325" - }, - { - "state": "srs11vMP7MMfBRLvBNitem33oDFV7FCfPaHhRikomFxy3jVtV53FXd", - "tick": "338" - }, - { - "state": "srs12BaTWwNh8NKpSEk4SGYawiC1s8oyJH6UKrUQLXcwW5hLkAqLPx", - "tick": "351" - }, - { - "state": "srs11hgu3w9aRcLayg5kUu61CaXm1BeDVMkHitS4ZnfbuEzU73Gpcb", - "tick": "364" - }, - { - "state": "srs13NL7QoCquYEkqK1dVtBWYoLGQ5g3XGCZCqDj5QbF6mwi6GjJAd", - "tick": "377" - }, - { - "state": "srs136NnmLzEnNqQ64tNEiddtBPPv7iWFWtr1UVLfhtRFkmvWFxZjS", - "tick": "390" - }, - { - "state": "srs12D5V9M1ZXArYpUmChoByYXrVS4CFKbmEwRWbqru1hRavwMtNuB", - "tick": "403" - }, - { - "state": "srs12Nwwc8Khpd1agRqidJa8GN4hZfFT9qURuB5Bgxq2sczbomPDUX", - "tick": "417" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "237", - "end_tick": "238", - "dissection": [ - { - "state": "srs12SamVBQSPxfGoE8gDxzSSWAheCKg6jFDevUfS5MBxqHMyALWZF", - "tick": "237" - }, - { - "state": "srs11aSVLpVVTXsiNGXkR1qLQE8w4qY5Jy5oQpLU4x6a2xfNQn9WQE", - "tick": "238" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_ongoing).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_ongoing).out deleted file mode 100644 index ff62a6963a4c..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (degraded_ongoing).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "417", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs13LkDAdzCVqJGHN2ZsjVhD4wKuE9fHj62DTAvJQn2JeTBBcHuf6", - "tick": "13" - }, - { - "state": "srs12sSp6Qj3jVsUV2vjN5fLip878sqPeJe1xZRMWXcya1PUwJdotw", - "tick": "26" - }, - { - "state": "srs11qz4B8om9ScNLonUYt2xRCCXiYrVSnEhstGmQR1mtNXVgd76Na", - "tick": "39" - }, - { - "state": "srs12sCHEaZWFoKPG3mBQbQK828KjEUnWDyP7oryH6b2hTVd5jP3D1", - "tick": "52" - }, - { - "state": "srs12x851PiWmxoSPURL9w7eFaRi43K8fXnB14ur61AdLMJ4rMLo1X", - "tick": "65" - }, - { - "state": "srs13MWVTAW2b3zogN84GWEgGTuKUpRutuFokmCTyLNJJk1N4qqujD", - "tick": "78" - }, - { - "state": "srs11YwcEVnTHU7TSy88Qu4159kSwjCXL4WNpLRVegyxChJMNjpmqt", - "tick": "91" - }, - { - "state": "srs131AcuyhGy52Q5fw45TUK3fqfoQwwTgCFaS5VMCW6GYUgHQY53s", - "tick": "104" - }, - { - "state": "srs12s9TiZcz4QEUebcb3o4tDrP1qQAhbrf1skPJBxei1ftgLMR65L", - "tick": "117" - }, - { - "state": "srs12Jdh38xqRLnW7foDV52wDniG7wnsezkudkj1fhbq1QsJyfVbuL", - "tick": "130" - }, - { - "state": "srs12sWp57pxuPqH3tNzVr7m74EjHTyAm8Za7Zdv9r1NwVYKk82pHJ", - "tick": "143" - }, - { - "state": "srs12wWrHRw1Y9s8nUniLSPaCv37u2hjseCk7QLLiR8gkLF2vvrN8W", - "tick": "156" - }, - { - "state": "srs12si3xayLHCyRGkKgUwGjgc4Ur8LTQc6TQp6JHJhktzL9cse7QA", - "tick": "169" - }, - { - "state": "srs11Ztt7JHZKZAxvA3bxRwiaQJPmabQfuQx5RqNa4xSXXeAU7sc8x", - "tick": "182" - }, - { - "state": "srs139mJkMzo5tPNixrhBU2LdZwdTxqryL35qkLh37wXmM8awDy2NM", - "tick": "195" - }, - { - "state": "srs131TNtRPgQAz9KcBGo9zBNc8n81o4HUJhnBJpafUbGz1dTiqPBU", - "tick": "208" - }, - { - "state": "srs136saATts5dMhpqfsXF9bR96XYG3ZFwPEjemVgctkcFEd4M8XqD", - "tick": "221" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs12fxttGCazcYnBiVqqw3EdGGjGWSd5rbrf73WJPrTnJZznL57aE", - "tick": "260" - }, - { - "state": "srs11UCqZzuKiFRkrFrphQx4ijCMVbSx4KwFVRLhuznvqyfhVvLocw", - "tick": "273" - }, - { - "state": "srs131Sk1U8p6gouJ1Q43kEYvC9cR78cFf7jMkMjgPN4UZepBAeUCD", - "tick": "286" - }, - { - "state": "srs13KUjS1VY9D6kn52sDx2fZAcFLXpxBFE9CeFSfBa2DbNDA7mXcv", - "tick": "299" - }, - { - "state": "srs12tJd5fq1LtEHBFoVQpgZY5JdgKnPRjSdeBB9N96zQePxHvadZQ", - "tick": "312" - }, - { - "state": "srs132pUbC4ao1jnNgofqnCGr9joGBY1UMn37WadqwGbHtMG1r9gBQ", - "tick": "325" - }, - { - "state": "srs11vMP7MMfBRLvBNitem33oDFV7FCfPaHhRikomFxy3jVtV53FXd", - "tick": "338" - }, - { - "state": "srs12BaTWwNh8NKpSEk4SGYawiC1s8oyJH6UKrUQLXcwW5hLkAqLPx", - "tick": "351" - }, - { - "state": "srs11hgu3w9aRcLayg5kUu61CaXm1BeDVMkHitS4ZnfbuEzU73Gpcb", - "tick": "364" - }, - { - "state": "srs13NL7QoCquYEkqK1dVtBWYoLGQ5g3XGCZCqDj5QbF6mwi6GjJAd", - "tick": "377" - }, - { - "state": "srs136NnmLzEnNqQ64tNEiddtBPPv7iWFWtr1UVLfhtRFkmvWFxZjS", - "tick": "390" - }, - { - "state": "srs12D5V9M1ZXArYpUmChoByYXrVS4CFKbmEwRWbqru1hRavwMtNuB", - "tick": "403" - }, - { - "state": "srs12Nwwc8Khpd1agRqidJa8GN4hZfFT9qURuB5Bgxq2sczbomPDUX", - "tick": "417" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "237", - "end_tick": "238", - "dissection": [ - { - "state": "srs12SamVBQSPxfGoE8gDxzSSWAheCKg6jFDevUfS5MBxqHMyALWZF", - "tick": "237" - }, - { - "state": "srs11aSVLpVVTXsiNGXkR1qLQE8w4qY5Jy5oQpLU4x6a2xfNQn9WQE", - "tick": "238" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof).out deleted file mode 100644 index 5117312cd6bf..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof).out +++ /dev/null @@ -1,156 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "633", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs12vtTaopR4LVCMLhm1dU3SkuU5agBotSF6StQwjak5m3uMhrUvN", - "tick": "19" - }, - { - "state": "srs11e9QVKZiN2ViCS1tZstp5pM45tS4hkL4tnZ75gT7VZv3ZpT8B7", - "tick": "38" - }, - { - "state": "srs125jr3XgYvD9GiqijX9DSWRvN48cq8JqzXJinnENEwbXdzzQ4ux", - "tick": "57" - }, - { - "state": "srs12pZuTNPbmaC6HhDrfWe9w6FX4o7NZwbqb2aC5FQdEHwW2gTrsS", - "tick": "76" - }, - { - "state": "srs12kj3WaQtN7ij9fG8yP7dQUXQmtRwWiRBfwNX8kLTyHNSWc85xV", - "tick": "95" - }, - { - "state": "srs12Di4eb4F3SpFFPVoxGa26FuaQZ5QPAkpTKe7TuReJUSBtjsHx4", - "tick": "114" - }, - { - "state": "srs131xLRcFvCqPDA2si7YPdM5mrZhfHJWxvNRiMAcxZKcMywT1ax6", - "tick": "133" - }, - { - "state": "srs11srpfFNxP9wPfGNkVK9trWPrpTNhEYTUErKpTkuoas8xKVRttW", - "tick": "152" - }, - { - "state": "srs11wuM5oxYTwZevKFFrwscG6dqBQ2jzTDVCDfDKjN3aKPGZYRKPJ", - "tick": "171" - }, - { - "state": "srs12oJ5qSRDFKMiCeA4eCN9U1FM4BZ7wrpUqxeqwKjvkpDDPRPjag", - "tick": "190" - }, - { - "state": "srs134AyZhP889FvH6aeoyzSwRw8UR11qPuJMcF9Y1XKNUSa58TMN3", - "tick": "209" - }, - { - "state": "srs12muTU728dshxr7gpUvQKJ5CTJKm4Nx8B7meKSEPoia3WJAFKEQ", - "tick": "228" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs13Dt2n3zSBVrJuSt7hJH5PVydcLyEAdnSqzPDzhnte4sSFYYLcd", - "tick": "266" - }, - { - "state": "srs136LPDNCVLqAHZrYjVFMDWQKUQYJQayDiervJL1bxdAVDBfp9Bx", - "tick": "285" - }, - { - "state": "srs11Z2wz8fBHG4kxGTpvLVT5KgEtM3255AbFdX81TX2vVdeTYmLRb", - "tick": "304" - }, - { - "state": "srs11siq9XqfW8zYmiXywPHWLadzodvoNZDW1dSNkr3TPF7cCPrvvP", - "tick": "323" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs1248mnhA9cjKcAvFSz6PMeaoeQsA7q5CUrs6TRg9NAWuEWbBfWv", - "tick": "361" - }, - { - "state": "srs13DzD9RZrKYKTpcXdmRhV8Bx9Tf8GtmqPovVJXT5J5KS8p8JJrc", - "tick": "380" - }, - { - "state": "srs12ip8JaHs3uPSJfWJFdQZVQ7v1gYdrLyLPy9t9TXppJjq92r4Kd", - "tick": "399" - }, - { - "state": "srs11kcu2JZ25uMxHpX7LZ3uBtNx9BWsoSadRKTBNRqqEyZEmCUy2r", - "tick": "418" - }, - { - "state": "srs13GfYyZ8i9uJiN81cXwQ5JGKvKNc6MdkpKURjHejt3sCLfsNCoA", - "tick": "437" - }, - { - "state": "srs11pu3iMJPcgov5zXT8tsTeNuuk1ZZLYZdYUk3qjFtf91HPq2iXD", - "tick": "456" - }, - { - "state": "srs12HHsSonM4ojWL2QmMAVbaRKAFC1zPHXwfkYCLFpTG9kT5HfcKW", - "tick": "475" - }, - { - "state": "srs13HMEZU3oetdfQzxrKhohTWL7TsCS7BeazRtmszB2JJpC8v5CH9", - "tick": "494" - }, - { - "state": "srs12pvdNgo74K5CZGVKTdrvwaqQzSuUZUUGwP46Wam7ZHtndTDtTv", - "tick": "513" - }, - { - "state": "srs11q6Hi7ubAbAhWcNGWCiVke5NyBonAEWEUqLRpBnqbyZQsjDn5M", - "tick": "532" - }, - { - "state": "srs13G9mRh4UHt72cetySzybgRSq9Pt2W26znq6uP1k3byfKtYqqD6", - "tick": "551" - }, - { - "state": "srs125NfQChcTvb92Kf8rt1YQubMabNeAWXDW1fyxEBXiserkpoDRD", - "tick": "570" - }, - { - "tick": "589" - }, - { - "tick": "633" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "118", - "end_tick": "119", - "dissection": [ - { - "state": "srs11f4NMwH5VG4q8tarMtmLHdqwyQkfNRjWYP97tmjPa4YAAjV4Yk", - "tick": "118" - }, - { - "state": "srs11y2ciVHyMH4HLurHtdtUpw3w23SWyqGuu6e3ZM3iXcuHguKqYp", - "tick": "119" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_at_genesis).out deleted file mode 100644 index cf771d839230..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_at_genesis).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "582", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11aPE6xa3SzUNtSNWmNCy2AUPQizTXNLESgiSSz3qqypJ4xsV1S", - "tick": "18" - }, - { - "state": "srs11iEwekiQpQZHVUgqaudDGtkxeHQAtcdWovxC2qnmPka4aVdRdv", - "tick": "36" - }, - { - "state": "srs11zXgJVFEN4GWETPxabgWiWwdoPqmYHNzVzJJSyMD1nw9qY6BjB", - "tick": "54" - }, - { - "state": "srs12LrLWsNcXUUcXhwGwjw4NwUB4CZxPsDhkw893F6GRG24Jr3bc6", - "tick": "72" - }, - { - "state": "srs12P7pB4oK1w85qRQf2PUzYzkRkAYMjdTMRmMPpoKaVSnvqSiwCa", - "tick": "90" - }, - { - "state": "srs11xhx6fj9usqvxZix1Z9VVYKmtzXq6aPgqU3RTHcuJWMoRWcD5J", - "tick": "108" - }, - { - "state": "srs13FNnKDSq83db7a4ySUqecN1tTHpoU6tuDmyjxoziRD5mWZqY5U", - "tick": "126" - }, - { - "state": "srs127C5MpG6jjtEknTv7qykwnhh1rkYfen2ooVPpsC7nsaDR6j9Wc", - "tick": "144" - }, - { - "state": "srs129a2JEbQNKnm21VJeRwNX56MNZ17zgjiiJLmRsL1shksgkooSY", - "tick": "162" - }, - { - "state": "srs12ttseoBU2CNUdydkU7xUqPW7KCXH3VrtKhkL351nnb5zpC2NKC", - "tick": "180" - }, - { - "state": "srs12evbqRoyoHXHuuLe93J7McHNey7AF77cFrdjSvnZxBtocvGwiE", - "tick": "198" - }, - { - "state": "srs12vTfr7F36yKJNUC5wF7uS2o2LZc8HtDcCqZYovtM5A1TXJ8PnU", - "tick": "216" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs12xuEMEAazvjTXRo4WJvV641NwUHCNAkAcFsWC7BLJ8fAoU39UR", - "tick": "252" - }, - { - "state": "srs12oGMtTEe9TiV83TV94o2GCbocjevfePoAJ6CrW48MUKu3bbwFm", - "tick": "270" - }, - { - "state": "srs12G5mFi3rfsENNaMdALNgSybuvUuZWzQs7fkaUQbPjmyRdcroFU", - "tick": "288" - }, - { - "state": "srs12PnwkMq4h6uyDAdtDcNCobfsUTjmnJ1SsLoe4o3idirjvtcbxj", - "tick": "306" - }, - { - "state": "srs13A56qE7mUQZtaESaQjPAxjWSXbRnbP6SqgGeyhR7vbZLkmsS5k", - "tick": "324" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs12J7QgVeLT4R7opWp7qrX7iZ85vB1R2gryGo6Hhwsk96uKijU53", - "tick": "360" - }, - { - "state": "srs11agUZZjbT5v3KgNXWi8wa7ixdiiKygFgoBQvAjLW6BHw1Aar4e", - "tick": "378" - }, - { - "state": "srs12p4EsDDZE9nNh8hVLf3FMrPGDXVg6KDUo1RmLkDmKLhJ3y7t7P", - "tick": "396" - }, - { - "state": "srs1213x6ako5pAMs8coXp2L9HfCj4aELEVLncLfB6ECNkaWDPbsNh", - "tick": "414" - }, - { - "state": "srs125LwkZoUJSP3iRou4tuQxWAZbGkaZy3ypFmLjYTPy5PAG5o1b4", - "tick": "432" - }, - { - "state": "srs11oPWrZXyBJDvJGs1gD66tuTQYwQ75AUx8Zqo9r7eTr7mT4KmPA", - "tick": "450" - }, - { - "state": "srs13A3qiQDaFFjW7uniVdTWdeNi7FNwyV5KBFEeWWX4JpY22yidBs", - "tick": "468" - }, - { - "state": "srs11ksHqrcDxHrQcVqPTBAcypR3PszdPBv5ggqqrmf2qwK1wK9cy2", - "tick": "486" - }, - { - "state": "srs12yYosmVjDV3i1JxUhTWtmMTEqDgv6rZBgJVvFcudZqxp8tf53f", - "tick": "504" - }, - { - "state": "srs12PMeq4iivEsJxsvjZfHYkQet3WBXbZduq6CDqaX1n7Vizwv1iM", - "tick": "522" - }, - { - "state": "srs12VUFV5VnnX146m4xz2CNHmq86iLpthdDzgxmt7bdhPyynx6MNm", - "tick": "540" - }, - { - "state": "srs12zjyN9hjk4RhNi8BSLQfddUhDXujU2YvoNKZAnXSVkhpgc5fwM", - "tick": "558" - }, - { - "state": "srs12BpWKZmJUaEoa9CQd6gqxSxcN5JWHCmTafFKvA2sfa8yugT8QJ", - "tick": "582" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "1", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11a79oWyLSNtvZZ2UG64HmZ5stmsuKeM3FXeFiBuri4448u5ytJ", - "tick": "1" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_many_empty_lev.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_many_empty_lev.out deleted file mode 100644 index acdd4516cfb2..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_many_empty_lev.out +++ /dev/null @@ -1,155 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "468", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs132G8CfbsvsAHR8XnfsTxe8B5CrxUhyWKfThr82VmiC8T7cWfv3", - "tick": "14" - }, - { - "state": "srs11wQrTRYfi1vod3AeMt8rTd4R77JKi1UzC1NqA75wSyaDcboPSq", - "tick": "28" - }, - { - "state": "srs12WtBQDVvQPYVtzc1xy7vxSeW6eXuw2ibC7ccDEgjJy5StkSCVz", - "tick": "42" - }, - { - "state": "srs12veP5ZoMbAnLN6E1CDbc68zegBKffZwDVMF8HkgMxqjHEgw6cv", - "tick": "56" - }, - { - "state": "srs12CDrh74LzrQECD1BuXLQQtMZq5SciKaHFsLUg5VXMWz1yVaDAP", - "tick": "70" - }, - { - "state": "srs12CnZ8euuC9F5pZMngDYmTn9VyWFCRYZ5CpcrrGvVd9oXhchRe9", - "tick": "84" - }, - { - "state": "srs134N1C4XGFeWJ5RmnBeJY3ct7iD5FN5z1D9cYrkAKPtKSvyzZvb", - "tick": "98" - }, - { - "state": "srs12Zb3pqHNYyYZmSXEZaEtuWG2oTkZvaTkRgPhM8dnTygQC5HDx7", - "tick": "112" - }, - { - "state": "srs12V75WvxhJGFo84N1f3jBV2iXFE1QUFm9qDo9tEUgN4manakG12", - "tick": "126" - }, - { - "state": "srs11tKy8pKjvsqJHhFNbrNVW32GdWeSHxjtiGKSkp5mRmJ1HU7aTi", - "tick": "140" - }, - { - "state": "srs139mNPHhRDsZNyvDezuqqZuunuZTMb6C2xice81n6RY7oegcnvQ", - "tick": "154" - }, - { - "state": "srs12YH7NydtfrrVBEaXERgsamWB42JthRtP1pbJktGDUa1KaWXmm4", - "tick": "168" - }, - { - "state": "srs12FSbfy1x4B6LHgykU6oXPLHU9qSR429Wwxt6GeisLg4VtgdoXr", - "tick": "182" - }, - { - "state": "srs12UDFsWJzTyr7eBA1x6UjQTM2jsJsQpqRjKWQmnjdWR2Aw41WPb", - "tick": "196" - }, - { - "state": "srs12YHcmZamW2tS3zERy1DSLtfCtV9wM9C4B3m9rX4LasLxNTAZ3X", - "tick": "210" - }, - { - "state": "srs11xtaeRauNLTytmuhQ7u7ACAGGmjCKNbXSknT1CRUXRtsRvHUpd", - "tick": "224" - }, - { - "state": "srs11haf2EmgEc8DdHMnwv9j1ooxfi72mY4CXvCuuP57iXUpHpSu61", - "tick": "238" - }, - { - "state": "srs11TFfMFYA9aWaobjvRuy76WxECjbZPznAEbTXyejVmruSSpXLyP", - "tick": "252" - }, - { - "state": "srs11qcKogF8uZMaS29SRMdp6iHU9i5yiieaW1qcZa7nFfRbXEkkzC", - "tick": "266" - }, - { - "state": "srs13Grrw9J35gdSDvmMz9gKsiEwd3qXerSSnfqkvbvBq5G6i28JjB", - "tick": "280" - }, - { - "state": "srs11UB6LM6uAdSQYCYQ6Nr1PW1gveSD3JcC2rwPAmeuZ7u7cNVMwo", - "tick": "294" - }, - { - "state": "srs11jZG6CxbWMgTfmmcXYg6zFbRaJJzMEDDuX8RnJLzThHyxC6mJQ", - "tick": "308" - }, - { - "state": "srs12QN4E3EJRc9JF568mj2ovL11UCTFk3fvjkJKcXPL5xJtnpCF1r", - "tick": "322" - }, - { - "state": "srs11exSEduqXEVNkTcsaEy8spThhEndLY4SPJm8vzDcBRXo5GWhD9", - "tick": "336" - }, - { - "state": "srs12NuyQqUS6eHALFkwpAVSntSSbKncAA6yNzRmssFU8mbY4nEPVY", - "tick": "350" - }, - { - "state": "srs11Yt49K1G8S4oipgvZdr9wi3kMCVn8WmKgnnV9KS5BJ4hdXCaWi", - "tick": "364" - }, - { - "state": "srs12qyoM7nkdDyxkyPG2SMQfrDL7g3HBx5y6va5bt1GVBEweZv1Yt", - "tick": "378" - }, - { - "state": "srs12cB9QNXc8b8KGmHWSXEneERcnPacnTA3pWtHzHuK3QFJmAeJzA", - "tick": "392" - }, - { - "state": "srs11XQZrXF8WUmmicnKfkQfoLXEfhu8jwUFkoSpD6zZ132pun27D8", - "tick": "406" - }, - { - "tick": "420" - }, - { - "tick": "434" - }, - { - "tick": "468" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "185", - "end_tick": "186", - "dissection": [ - { - "state": "srs12rHj2ZkMiYtCsx1D2wbFEHksK8pyuqi4R45BZ2AcHVjyuuUwNM", - "tick": "185" - }, - { - "state": "srs12HbD5k4th6VBKRyYvK74eGY35pBcodxAX2wv4nALG9o6UZbFXp", - "tick": "186" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_one_empty_leve.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_one_empty_leve.out deleted file mode 100644 index 08e616b311b1..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_one_empty_leve.out +++ /dev/null @@ -1,155 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "578", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs12TLVrFzF4W4CEiQyN6PpUNsSyTPps7hy4GuDbM7UtnkipGEFH9", - "tick": "18" - }, - { - "state": "srs12jnczWqArxF61tD7oecUHmxTHycekGEEinSKpb5ppxVjKxTmDy", - "tick": "36" - }, - { - "state": "srs1371fHBp8VGwsSAghCPNHU4pAxN3aDAxY8YGkKAEBJMssvxjRfa", - "tick": "54" - }, - { - "state": "srs127UR38JJf8A1rnpUNNqpetoURUr5brcmA4dCMvF8LbFp1d4XHW", - "tick": "72" - }, - { - "state": "srs137CJxLxZy9CgFAxXx5DkuuQnfi95SRZTH8hFo6nku1AP3s7PDk", - "tick": "90" - }, - { - "state": "srs12QXkWrYe7mzi5GD7Z3kqaAuyXsqXFXucFEjaSKPh26TRmYt8Kj", - "tick": "108" - }, - { - "state": "srs127nX9oEftcvCv4qLqwuXXhHxpQ4WGEjUP6yh4mE43oWbPzx856", - "tick": "126" - }, - { - "state": "srs11axHJ83z7yVCa4D1wzZxPqkhCRvzPPQhuMca8M6RJtguGF1daz", - "tick": "144" - }, - { - "state": "srs134Z5VoqYaV6SDUnW4n3tP4dEUTRB3zbrbJNRqvPaQ6yxpTqqof", - "tick": "162" - }, - { - "state": "srs13KBWkw5pQWJsyv2qhzBft8i6uE7kAyrksT1FjnRPjhBy3St4oJ", - "tick": "180" - }, - { - "state": "srs11tQtssLxgPtS9spt7MYDae7u7bdxkH4J7MCzqEGKoBqv13V2Ya", - "tick": "198" - }, - { - "state": "srs12qq5MhgRy7regndnQFUeDiCc5izHegpbUMqBfcR22Z8fgW61CU", - "tick": "216" - }, - { - "state": "srs11UxgJongbKm8jX2zbgactV752RkoWZ4QXPGEnNtRmTov1xH8jg", - "tick": "234" - }, - { - "state": "srs11p43vMxT1hfZDiPB3fSjrRwG96byXmk3sF8Q8KdpZcaVzExwpR", - "tick": "252" - }, - { - "state": "srs11YvptjtBu6ZEXfYij1prtGRvGgBnAC7YoA3N3m1iZ7xfUfFQzf", - "tick": "270" - }, - { - "state": "srs13LyfhezxQB8gS9CkfHGckqtzmnLHQqvWwxS9zNzLHBhPYkTqPP", - "tick": "288" - }, - { - "state": "srs12UrQPN54M3PRs9G3C4aK53BAU8aLhLGf45TKaQgyDQCEzV4zkb", - "tick": "306" - }, - { - "state": "srs11ZU3cGF2jhWESwcHfv7Z7bEznivmB5rMnqU4YkD2KfcCs3GCso", - "tick": "324" - }, - { - "state": "srs124NLK6rTLWyggQSU2uPzPatvZB7PZdkxMAsQXFJXsaQZ2mFLT1", - "tick": "342" - }, - { - "state": "srs12rvLZMJ9ezwQ9q3vby7qfwyLEnkYSf95iZqu7E5JeNR4t9CFqL", - "tick": "360" - }, - { - "state": "srs12EUgACtPPZLEnQ4B2xRrvjjTDfvkrPy5DBJWLbGqmKZL1zuhgu", - "tick": "378" - }, - { - "state": "srs12bTQtNLzttz6t218rKnx3b3EFxtk2dMZDtso1F4ZKQaehFGLYD", - "tick": "396" - }, - { - "state": "srs12nzAHwAvxDGhYVr8vnd7RjqhFkUcKvBa55TZdEB3HSiBq7BCZ8", - "tick": "414" - }, - { - "state": "srs11g9GB9zW65RZ4VUshjHUfWDvNiyhqBHk176TFNjDciMazYxsVW", - "tick": "432" - }, - { - "state": "srs11dDw5zFGtCpmtX87KL3SJXY2uudMqR8PjjnpGCL4zyXoaNzKZR", - "tick": "450" - }, - { - "state": "srs11WqzXXVg2m5bmzmZESTjjf9qypQfp7aHgadxwEHKQuXCjj8vzw", - "tick": "468" - }, - { - "state": "srs12DzAQcXNGTCVrDb4neUAf7PQYAqH9xpYb9uaXwfoixP84SjozF", - "tick": "486" - }, - { - "state": "srs12zdSG6emMy4skCK8voJnaeLNVV8p1dR3on7ZwyyoD6wLGS9GRK", - "tick": "504" - }, - { - "state": "srs12z35yM35DULev4rtKoj3o6ZHHNQFMogBLnLH36wnRnQEfAiH2f", - "tick": "522" - }, - { - "tick": "540" - }, - { - "tick": "558" - }, - { - "tick": "578" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "121", - "end_tick": "122", - "dissection": [ - { - "state": "srs12HZJ47171HhBcg1vmRNvx2npo2y1sPXTzhzsr5RQDRco7rNMEm", - "tick": "121" - }, - { - "state": "srs11jzwXs7QqztVCCCUX8AgkPZ7qrAV6HbQPNfJhy2MoZoF5r6JM3", - "tick": "122" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_with_new_conte.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_with_new_conte.out deleted file mode 100644 index 5117312cd6bf..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (inbox_proof_with_new_conte.out +++ /dev/null @@ -1,156 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "633", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs12vtTaopR4LVCMLhm1dU3SkuU5agBotSF6StQwjak5m3uMhrUvN", - "tick": "19" - }, - { - "state": "srs11e9QVKZiN2ViCS1tZstp5pM45tS4hkL4tnZ75gT7VZv3ZpT8B7", - "tick": "38" - }, - { - "state": "srs125jr3XgYvD9GiqijX9DSWRvN48cq8JqzXJinnENEwbXdzzQ4ux", - "tick": "57" - }, - { - "state": "srs12pZuTNPbmaC6HhDrfWe9w6FX4o7NZwbqb2aC5FQdEHwW2gTrsS", - "tick": "76" - }, - { - "state": "srs12kj3WaQtN7ij9fG8yP7dQUXQmtRwWiRBfwNX8kLTyHNSWc85xV", - "tick": "95" - }, - { - "state": "srs12Di4eb4F3SpFFPVoxGa26FuaQZ5QPAkpTKe7TuReJUSBtjsHx4", - "tick": "114" - }, - { - "state": "srs131xLRcFvCqPDA2si7YPdM5mrZhfHJWxvNRiMAcxZKcMywT1ax6", - "tick": "133" - }, - { - "state": "srs11srpfFNxP9wPfGNkVK9trWPrpTNhEYTUErKpTkuoas8xKVRttW", - "tick": "152" - }, - { - "state": "srs11wuM5oxYTwZevKFFrwscG6dqBQ2jzTDVCDfDKjN3aKPGZYRKPJ", - "tick": "171" - }, - { - "state": "srs12oJ5qSRDFKMiCeA4eCN9U1FM4BZ7wrpUqxeqwKjvkpDDPRPjag", - "tick": "190" - }, - { - "state": "srs134AyZhP889FvH6aeoyzSwRw8UR11qPuJMcF9Y1XKNUSa58TMN3", - "tick": "209" - }, - { - "state": "srs12muTU728dshxr7gpUvQKJ5CTJKm4Nx8B7meKSEPoia3WJAFKEQ", - "tick": "228" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs13Dt2n3zSBVrJuSt7hJH5PVydcLyEAdnSqzPDzhnte4sSFYYLcd", - "tick": "266" - }, - { - "state": "srs136LPDNCVLqAHZrYjVFMDWQKUQYJQayDiervJL1bxdAVDBfp9Bx", - "tick": "285" - }, - { - "state": "srs11Z2wz8fBHG4kxGTpvLVT5KgEtM3255AbFdX81TX2vVdeTYmLRb", - "tick": "304" - }, - { - "state": "srs11siq9XqfW8zYmiXywPHWLadzodvoNZDW1dSNkr3TPF7cCPrvvP", - "tick": "323" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs1248mnhA9cjKcAvFSz6PMeaoeQsA7q5CUrs6TRg9NAWuEWbBfWv", - "tick": "361" - }, - { - "state": "srs13DzD9RZrKYKTpcXdmRhV8Bx9Tf8GtmqPovVJXT5J5KS8p8JJrc", - "tick": "380" - }, - { - "state": "srs12ip8JaHs3uPSJfWJFdQZVQ7v1gYdrLyLPy9t9TXppJjq92r4Kd", - "tick": "399" - }, - { - "state": "srs11kcu2JZ25uMxHpX7LZ3uBtNx9BWsoSadRKTBNRqqEyZEmCUy2r", - "tick": "418" - }, - { - "state": "srs13GfYyZ8i9uJiN81cXwQ5JGKvKNc6MdkpKURjHejt3sCLfsNCoA", - "tick": "437" - }, - { - "state": "srs11pu3iMJPcgov5zXT8tsTeNuuk1ZZLYZdYUk3qjFtf91HPq2iXD", - "tick": "456" - }, - { - "state": "srs12HHsSonM4ojWL2QmMAVbaRKAFC1zPHXwfkYCLFpTG9kT5HfcKW", - "tick": "475" - }, - { - "state": "srs13HMEZU3oetdfQzxrKhohTWL7TsCS7BeazRtmszB2JJpC8v5CH9", - "tick": "494" - }, - { - "state": "srs12pvdNgo74K5CZGVKTdrvwaqQzSuUZUUGwP46Wam7ZHtndTDtTv", - "tick": "513" - }, - { - "state": "srs11q6Hi7ubAbAhWcNGWCiVke5NyBonAEWEUqLRpBnqbyZQsjDn5M", - "tick": "532" - }, - { - "state": "srs13G9mRh4UHt72cetySzybgRSq9Pt2W26znq6uP1k3byfKtYqqD6", - "tick": "551" - }, - { - "state": "srs125NfQChcTvb92Kf8rt1YQubMabNeAWXDW1fyxEBXiserkpoDRD", - "tick": "570" - }, - { - "tick": "589" - }, - { - "tick": "633" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "118", - "end_tick": "119", - "dissection": [ - { - "state": "srs11f4NMwH5VG4q8tarMtmLHdqwyQkfNRjWYP97tmjPa4YAAjV4Yk", - "tick": "118" - }, - { - "state": "srs11y2ciVHyMH4HLurHtdtUpw3w23SWyqGuu6e3ZM3iXcuHguKqYp", - "tick": "119" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_0).out deleted file mode 100644 index 2456686d0f19..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_0).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "582", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11aPE6xa3SzUNtSNWmNCy2AUPQizTXNLESgiSSz3qqypJ4xsV1S", - "tick": "18" - }, - { - "state": "srs11iEwekiQpQZHVUgqaudDGtkxeHQAtcdWovxC2qnmPka4aVdRdv", - "tick": "36" - }, - { - "state": "srs11zXgJVFEN4GWETPxabgWiWwdoPqmYHNzVzJJSyMD1nw9qY6BjB", - "tick": "54" - }, - { - "state": "srs12LrLWsNcXUUcXhwGwjw4NwUB4CZxPsDhkw893F6GRG24Jr3bc6", - "tick": "72" - }, - { - "state": "srs12P7pB4oK1w85qRQf2PUzYzkRkAYMjdTMRmMPpoKaVSnvqSiwCa", - "tick": "90" - }, - { - "state": "srs11xhx6fj9usqvxZix1Z9VVYKmtzXq6aPgqU3RTHcuJWMoRWcD5J", - "tick": "108" - }, - { - "state": "srs13FNnKDSq83db7a4ySUqecN1tTHpoU6tuDmyjxoziRD5mWZqY5U", - "tick": "126" - }, - { - "state": "srs127C5MpG6jjtEknTv7qykwnhh1rkYfen2ooVPpsC7nsaDR6j9Wc", - "tick": "144" - }, - { - "state": "srs129a2JEbQNKnm21VJeRwNX56MNZ17zgjiiJLmRsL1shksgkooSY", - "tick": "162" - }, - { - "state": "srs12ttseoBU2CNUdydkU7xUqPW7KCXH3VrtKhkL351nnb5zpC2NKC", - "tick": "180" - }, - { - "state": "srs12evbqRoyoHXHuuLe93J7McHNey7AF77cFrdjSvnZxBtocvGwiE", - "tick": "198" - }, - { - "state": "srs12vTfr7F36yKJNUC5wF7uS2o2LZc8HtDcCqZYovtM5A1TXJ8PnU", - "tick": "216" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs12xuEMEAazvjTXRo4WJvV641NwUHCNAkAcFsWC7BLJ8fAoU39UR", - "tick": "252" - }, - { - "state": "srs12oGMtTEe9TiV83TV94o2GCbocjevfePoAJ6CrW48MUKu3bbwFm", - "tick": "270" - }, - { - "state": "srs12G5mFi3rfsENNaMdALNgSybuvUuZWzQs7fkaUQbPjmyRdcroFU", - "tick": "288" - }, - { - "state": "srs12PnwkMq4h6uyDAdtDcNCobfsUTjmnJ1SsLoe4o3idirjvtcbxj", - "tick": "306" - }, - { - "state": "srs13A56qE7mUQZtaESaQjPAxjWSXbRnbP6SqgGeyhR7vbZLkmsS5k", - "tick": "324" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs12J7QgVeLT4R7opWp7qrX7iZ85vB1R2gryGo6Hhwsk96uKijU53", - "tick": "360" - }, - { - "state": "srs11agUZZjbT5v3KgNXWi8wa7ixdiiKygFgoBQvAjLW6BHw1Aar4e", - "tick": "378" - }, - { - "state": "srs12p4EsDDZE9nNh8hVLf3FMrPGDXVg6KDUo1RmLkDmKLhJ3y7t7P", - "tick": "396" - }, - { - "state": "srs1213x6ako5pAMs8coXp2L9HfCj4aELEVLncLfB6ECNkaWDPbsNh", - "tick": "414" - }, - { - "state": "srs125LwkZoUJSP3iRou4tuQxWAZbGkaZy3ypFmLjYTPy5PAG5o1b4", - "tick": "432" - }, - { - "state": "srs11oPWrZXyBJDvJGs1gD66tuTQYwQ75AUx8Zqo9r7eTr7mT4KmPA", - "tick": "450" - }, - { - "state": "srs13A3qiQDaFFjW7uniVdTWdeNi7FNwyV5KBFEeWWX4JpY22yidBs", - "tick": "468" - }, - { - "state": "srs11ksHqrcDxHrQcVqPTBAcypR3PszdPBv5ggqqrmf2qwK1wK9cy2", - "tick": "486" - }, - { - "state": "srs12yYosmVjDV3i1JxUhTWtmMTEqDgv6rZBgJVvFcudZqxp8tf53f", - "tick": "504" - }, - { - "state": "srs12PMeq4iivEsJxsvjZfHYkQet3WBXbZduq6CDqaX1n7Vizwv1iM", - "tick": "522" - }, - { - "state": "srs12VUFV5VnnX146m4xz2CNHmq86iLpthdDzgxmt7bdhPyynx6MNm", - "tick": "540" - }, - { - "state": "srs12zjyN9hjk4RhNi8BSLQfddUhDXujU2YvoNKZAnXSVkhpgc5fwM", - "tick": "558" - }, - { - "state": "srs12BpWKZmJUaEoa9CQd6gqxSxcN5JWHCmTafFKvA2sfa8yugT8QJ", - "tick": "582" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "121", - "end_tick": "122", - "dissection": [ - { - "state": "srs11oZfvX5xjF9pPtckaUhYnMfPFT5bq7V16ZRQrBtPterf2aHfTa", - "tick": "121" - }, - { - "state": "srs12NMUCUm6LBBHAUmGe9TeVht1N9nHG54VwM1SmA8i6zgVme1ws5", - "tick": "122" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_1).out deleted file mode 100644 index 0112e8c8ef9f..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_1).out +++ /dev/null @@ -1,156 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "629", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs12vtTaopR4LVCMLhm1dU3SkuU5agBotSF6StQwjak5m3uMhrUvN", - "tick": "19" - }, - { - "state": "srs11e9QVKZiN2ViCS1tZstp5pM45tS4hkL4tnZ75gT7VZv3ZpT8B7", - "tick": "38" - }, - { - "state": "srs125jr3XgYvD9GiqijX9DSWRvN48cq8JqzXJinnENEwbXdzzQ4ux", - "tick": "57" - }, - { - "state": "srs12pZuTNPbmaC6HhDrfWe9w6FX4o7NZwbqb2aC5FQdEHwW2gTrsS", - "tick": "76" - }, - { - "state": "srs12kj3WaQtN7ij9fG8yP7dQUXQmtRwWiRBfwNX8kLTyHNSWc85xV", - "tick": "95" - }, - { - "state": "srs12Di4eb4F3SpFFPVoxGa26FuaQZ5QPAkpTKe7TuReJUSBtjsHx4", - "tick": "114" - }, - { - "state": "srs131xLRcFvCqPDA2si7YPdM5mrZhfHJWxvNRiMAcxZKcMywT1ax6", - "tick": "133" - }, - { - "state": "srs11srpfFNxP9wPfGNkVK9trWPrpTNhEYTUErKpTkuoas8xKVRttW", - "tick": "152" - }, - { - "state": "srs11wuM5oxYTwZevKFFrwscG6dqBQ2jzTDVCDfDKjN3aKPGZYRKPJ", - "tick": "171" - }, - { - "state": "srs12oJ5qSRDFKMiCeA4eCN9U1FM4BZ7wrpUqxeqwKjvkpDDPRPjag", - "tick": "190" - }, - { - "state": "srs134AyZhP889FvH6aeoyzSwRw8UR11qPuJMcF9Y1XKNUSa58TMN3", - "tick": "209" - }, - { - "state": "srs12muTU728dshxr7gpUvQKJ5CTJKm4Nx8B7meKSEPoia3WJAFKEQ", - "tick": "228" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs13Dt2n3zSBVrJuSt7hJH5PVydcLyEAdnSqzPDzhnte4sSFYYLcd", - "tick": "266" - }, - { - "state": "srs136LPDNCVLqAHZrYjVFMDWQKUQYJQayDiervJL1bxdAVDBfp9Bx", - "tick": "285" - }, - { - "state": "srs11Z2wz8fBHG4kxGTpvLVT5KgEtM3255AbFdX81TX2vVdeTYmLRb", - "tick": "304" - }, - { - "state": "srs11siq9XqfW8zYmiXywPHWLadzodvoNZDW1dSNkr3TPF7cCPrvvP", - "tick": "323" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs1248mnhA9cjKcAvFSz6PMeaoeQsA7q5CUrs6TRg9NAWuEWbBfWv", - "tick": "361" - }, - { - "state": "srs13DzD9RZrKYKTpcXdmRhV8Bx9Tf8GtmqPovVJXT5J5KS8p8JJrc", - "tick": "380" - }, - { - "state": "srs12ip8JaHs3uPSJfWJFdQZVQ7v1gYdrLyLPy9t9TXppJjq92r4Kd", - "tick": "399" - }, - { - "state": "srs11kcu2JZ25uMxHpX7LZ3uBtNx9BWsoSadRKTBNRqqEyZEmCUy2r", - "tick": "418" - }, - { - "state": "srs13GfYyZ8i9uJiN81cXwQ5JGKvKNc6MdkpKURjHejt3sCLfsNCoA", - "tick": "437" - }, - { - "state": "srs11pu3iMJPcgov5zXT8tsTeNuuk1ZZLYZdYUk3qjFtf91HPq2iXD", - "tick": "456" - }, - { - "state": "srs12HHsSonM4ojWL2QmMAVbaRKAFC1zPHXwfkYCLFpTG9kT5HfcKW", - "tick": "475" - }, - { - "state": "srs13HMEZU3oetdfQzxrKhohTWL7TsCS7BeazRtmszB2JJpC8v5CH9", - "tick": "494" - }, - { - "state": "srs12pvdNgo74K5CZGVKTdrvwaqQzSuUZUUGwP46Wam7ZHtndTDtTv", - "tick": "513" - }, - { - "state": "srs11q6Hi7ubAbAhWcNGWCiVke5NyBonAEWEUqLRpBnqbyZQsjDn5M", - "tick": "532" - }, - { - "state": "srs13G9mRh4UHt72cetySzybgRSq9Pt2W26znq6uP1k3byfKtYqqD6", - "tick": "551" - }, - { - "state": "srs125NfQChcTvb92Kf8rt1YQubMabNeAWXDW1fyxEBXiserkpoDRD", - "tick": "570" - }, - { - "tick": "589" - }, - { - "tick": "629" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "236", - "end_tick": "237", - "dissection": [ - { - "state": "srs12Yvwyt4YKL7JKhwAWadsunVYZx1CHXf4n1ioXb4XiJAryfKfhY", - "tick": "236" - }, - { - "state": "srs12SamVBQSPxfGoE8gDxzSSWAheCKg6jFDevUfS5MBxqHMyALWZF", - "tick": "237" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_2).out deleted file mode 100644 index ff62a6963a4c..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_2).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "417", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs13LkDAdzCVqJGHN2ZsjVhD4wKuE9fHj62DTAvJQn2JeTBBcHuf6", - "tick": "13" - }, - { - "state": "srs12sSp6Qj3jVsUV2vjN5fLip878sqPeJe1xZRMWXcya1PUwJdotw", - "tick": "26" - }, - { - "state": "srs11qz4B8om9ScNLonUYt2xRCCXiYrVSnEhstGmQR1mtNXVgd76Na", - "tick": "39" - }, - { - "state": "srs12sCHEaZWFoKPG3mBQbQK828KjEUnWDyP7oryH6b2hTVd5jP3D1", - "tick": "52" - }, - { - "state": "srs12x851PiWmxoSPURL9w7eFaRi43K8fXnB14ur61AdLMJ4rMLo1X", - "tick": "65" - }, - { - "state": "srs13MWVTAW2b3zogN84GWEgGTuKUpRutuFokmCTyLNJJk1N4qqujD", - "tick": "78" - }, - { - "state": "srs11YwcEVnTHU7TSy88Qu4159kSwjCXL4WNpLRVegyxChJMNjpmqt", - "tick": "91" - }, - { - "state": "srs131AcuyhGy52Q5fw45TUK3fqfoQwwTgCFaS5VMCW6GYUgHQY53s", - "tick": "104" - }, - { - "state": "srs12s9TiZcz4QEUebcb3o4tDrP1qQAhbrf1skPJBxei1ftgLMR65L", - "tick": "117" - }, - { - "state": "srs12Jdh38xqRLnW7foDV52wDniG7wnsezkudkj1fhbq1QsJyfVbuL", - "tick": "130" - }, - { - "state": "srs12sWp57pxuPqH3tNzVr7m74EjHTyAm8Za7Zdv9r1NwVYKk82pHJ", - "tick": "143" - }, - { - "state": "srs12wWrHRw1Y9s8nUniLSPaCv37u2hjseCk7QLLiR8gkLF2vvrN8W", - "tick": "156" - }, - { - "state": "srs12si3xayLHCyRGkKgUwGjgc4Ur8LTQc6TQp6JHJhktzL9cse7QA", - "tick": "169" - }, - { - "state": "srs11Ztt7JHZKZAxvA3bxRwiaQJPmabQfuQx5RqNa4xSXXeAU7sc8x", - "tick": "182" - }, - { - "state": "srs139mJkMzo5tPNixrhBU2LdZwdTxqryL35qkLh37wXmM8awDy2NM", - "tick": "195" - }, - { - "state": "srs131TNtRPgQAz9KcBGo9zBNc8n81o4HUJhnBJpafUbGz1dTiqPBU", - "tick": "208" - }, - { - "state": "srs136saATts5dMhpqfsXF9bR96XYG3ZFwPEjemVgctkcFEd4M8XqD", - "tick": "221" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs121Qh51MYBsS1K8Z6WFtnfMmRtExCQJ73xx7KvRT9MHgH9E7Mrh", - "tick": "247" - }, - { - "state": "srs12fxttGCazcYnBiVqqw3EdGGjGWSd5rbrf73WJPrTnJZznL57aE", - "tick": "260" - }, - { - "state": "srs11UCqZzuKiFRkrFrphQx4ijCMVbSx4KwFVRLhuznvqyfhVvLocw", - "tick": "273" - }, - { - "state": "srs131Sk1U8p6gouJ1Q43kEYvC9cR78cFf7jMkMjgPN4UZepBAeUCD", - "tick": "286" - }, - { - "state": "srs13KUjS1VY9D6kn52sDx2fZAcFLXpxBFE9CeFSfBa2DbNDA7mXcv", - "tick": "299" - }, - { - "state": "srs12tJd5fq1LtEHBFoVQpgZY5JdgKnPRjSdeBB9N96zQePxHvadZQ", - "tick": "312" - }, - { - "state": "srs132pUbC4ao1jnNgofqnCGr9joGBY1UMn37WadqwGbHtMG1r9gBQ", - "tick": "325" - }, - { - "state": "srs11vMP7MMfBRLvBNitem33oDFV7FCfPaHhRikomFxy3jVtV53FXd", - "tick": "338" - }, - { - "state": "srs12BaTWwNh8NKpSEk4SGYawiC1s8oyJH6UKrUQLXcwW5hLkAqLPx", - "tick": "351" - }, - { - "state": "srs11hgu3w9aRcLayg5kUu61CaXm1BeDVMkHitS4ZnfbuEzU73Gpcb", - "tick": "364" - }, - { - "state": "srs13NL7QoCquYEkqK1dVtBWYoLGQ5g3XGCZCqDj5QbF6mwi6GjJAd", - "tick": "377" - }, - { - "state": "srs136NnmLzEnNqQ64tNEiddtBPPv7iWFWtr1UVLfhtRFkmvWFxZjS", - "tick": "390" - }, - { - "state": "srs12D5V9M1ZXArYpUmChoByYXrVS4CFKbmEwRWbqru1hRavwMtNuB", - "tick": "403" - }, - { - "state": "srs12Nwwc8Khpd1agRqidJa8GN4hZfFT9qURuB5Bgxq2sczbomPDUX", - "tick": "417" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "237", - "end_tick": "238", - "dissection": [ - { - "state": "srs12SamVBQSPxfGoE8gDxzSSWAheCKg6jFDevUfS5MBxqHMyALWZF", - "tick": "237" - }, - { - "state": "srs11aSVLpVVTXsiNGXkR1qLQE8w4qY5Jy5oQpLU4x6a2xfNQn9WQE", - "tick": "238" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_3).out deleted file mode 100644 index b93d49933eb2..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_3).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "417", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs13LkDAdzCVqJGHN2ZsjVhD4wKuE9fHj62DTAvJQn2JeTBBcHuf6", - "tick": "13" - }, - { - "state": "srs12sSp6Qj3jVsUV2vjN5fLip878sqPeJe1xZRMWXcya1PUwJdotw", - "tick": "26" - }, - { - "state": "srs11qz4B8om9ScNLonUYt2xRCCXiYrVSnEhstGmQR1mtNXVgd76Na", - "tick": "39" - }, - { - "state": "srs12sCHEaZWFoKPG3mBQbQK828KjEUnWDyP7oryH6b2hTVd5jP3D1", - "tick": "52" - }, - { - "state": "srs12x851PiWmxoSPURL9w7eFaRi43K8fXnB14ur61AdLMJ4rMLo1X", - "tick": "65" - }, - { - "state": "srs13MWVTAW2b3zogN84GWEgGTuKUpRutuFokmCTyLNJJk1N4qqujD", - "tick": "78" - }, - { - "state": "srs11YwcEVnTHU7TSy88Qu4159kSwjCXL4WNpLRVegyxChJMNjpmqt", - "tick": "91" - }, - { - "state": "srs131AcuyhGy52Q5fw45TUK3fqfoQwwTgCFaS5VMCW6GYUgHQY53s", - "tick": "104" - }, - { - "state": "srs12s9TiZcz4QEUebcb3o4tDrP1qQAhbrf1skPJBxei1ftgLMR65L", - "tick": "117" - }, - { - "state": "srs12dyhhdK55wSsFik82JRVvKTELJA6pnPe4mLQNkfkg98fAEKhPb", - "tick": "130" - }, - { - "state": "srs11cUD8Jbu7eBA3icQPqxioZqazVLCqbVJQdYL29fxg4qRusymTm", - "tick": "143" - }, - { - "state": "srs1377Txq2HoKtNTWzLiGGT5Ep6k68VDwwTnU3ybC4mnM3Cfk1vyV", - "tick": "156" - }, - { - "state": "srs12cMPd1pm38SU5YiRYmKH2BL15dB7rqH5XSKD4ju8y1mYZ4cJ29", - "tick": "169" - }, - { - "state": "srs12oLjbL3M9GSUHJZRufKewTSNiCVgCM4JWKRBhuSZX6yYuG6YXa", - "tick": "182" - }, - { - "state": "srs12c62SBQkSDkG7mpHhkQ2F72g4HTjU4kHUQgyDdpN9PWKFXeB6j", - "tick": "195" - }, - { - "state": "srs11d7m3iwEbnA3htZUnBTV5r8DDSZ5dm4ENTTuMNSZihNKtoBeDb", - "tick": "208" - }, - { - "state": "srs11WhQ9uEExtUxj3K2UXcatMmfYJiRRCzHw8wbMXb6ha2zZfyzmk", - "tick": "221" - }, - { - "state": "srs13CWQ5gXouFD9Rdat6gdWbx2GMNwwkQMCuCj7fq3p5YLUAS9kNS", - "tick": "234" - }, - { - "state": "srs13KyPMEM2PHmT4sB43rvyyLrQkzq3MxsbJVugEf82DAifNPaQzy", - "tick": "247" - }, - { - "state": "srs11YLndaQ6MzARNCSF8Lqv41BE1NyzaXjo9Q89HAcmAFroQwbhGT", - "tick": "260" - }, - { - "state": "srs12V8EpjHwEZKNsmnjqNHrRb5oSaAbKpo1Bw1KmXuBZx5GWbvw5v", - "tick": "273" - }, - { - "state": "srs12fFGU3Lioc5bSzWRhH5DgeFxPvVZ78uT9ai2DqygQBRxSLUgFa", - "tick": "286" - }, - { - "state": "srs13DMiNmyga3fwQNd6A1BX4kFQnKzsNoroJaw8B27HCv8Wjtb2jb", - "tick": "299" - }, - { - "state": "srs11WBAEWEnWDasE6kBWQCsMWbLRXVvaJPj7sALuHsoNkyY6KGaYd", - "tick": "312" - }, - { - "state": "srs139Mrjgz9J7jDLrxR7wNeJ32b5bZmaeekBEfoK3s6KvX5GsRmnR", - "tick": "325" - }, - { - "state": "srs11XxQocyqHhv6gjw9xLL5ookYsC2G4mLz6o4K1ggSuhskuWBZRE", - "tick": "338" - }, - { - "state": "srs11UXwQ562uZ67g2qMd9hs4w6qzJoox6MPPyJ7MVjRn6T8uVkB5Q", - "tick": "351" - }, - { - "state": "srs11eCVQc9U4Cbikcz7HpwvtgD3gJDVwgdhisueiXWnt4jCuQEDwA", - "tick": "364" - }, - { - "state": "srs12uEwc1AAtH3ZjwjxRVR9q8H8r2sGeK5SNdy3axkP32yq2UkiVG", - "tick": "377" - }, - { - "state": "srs132dWtVWi7RKYiNPDseXgbKXPT4tXWMWZNbKU6yskUgZKAy8UHj", - "tick": "390" - }, - { - "state": "srs126UZP2kcrQT2zc3zLixwKJA9orZPo3WxS5PN9YA1BPMEaW1gYW", - "tick": "403" - }, - { - "state": "srs12tD877tBBjfXj21sqxzKSpWGq5kTSjTvimRpNDs3Pw2f4W2TEX", - "tick": "417" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "243", - "end_tick": "244", - "dissection": [ - { - "state": "srs11jfyag2W9Bat4YFiVhtwamKJw21mitJb6NAxPtLUt4fnsSCE5g", - "tick": "243" - }, - { - "state": "srs132uoRybFVMx4uLTzss311q9zNggmzn29D2CENGkFRuBca5GpDv", - "tick": "244" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_at_genesis).out deleted file mode 100644 index cf771d839230..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (pvm_proof_at_genesis).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "582", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11aPE6xa3SzUNtSNWmNCy2AUPQizTXNLESgiSSz3qqypJ4xsV1S", - "tick": "18" - }, - { - "state": "srs11iEwekiQpQZHVUgqaudDGtkxeHQAtcdWovxC2qnmPka4aVdRdv", - "tick": "36" - }, - { - "state": "srs11zXgJVFEN4GWETPxabgWiWwdoPqmYHNzVzJJSyMD1nw9qY6BjB", - "tick": "54" - }, - { - "state": "srs12LrLWsNcXUUcXhwGwjw4NwUB4CZxPsDhkw893F6GRG24Jr3bc6", - "tick": "72" - }, - { - "state": "srs12P7pB4oK1w85qRQf2PUzYzkRkAYMjdTMRmMPpoKaVSnvqSiwCa", - "tick": "90" - }, - { - "state": "srs11xhx6fj9usqvxZix1Z9VVYKmtzXq6aPgqU3RTHcuJWMoRWcD5J", - "tick": "108" - }, - { - "state": "srs13FNnKDSq83db7a4ySUqecN1tTHpoU6tuDmyjxoziRD5mWZqY5U", - "tick": "126" - }, - { - "state": "srs127C5MpG6jjtEknTv7qykwnhh1rkYfen2ooVPpsC7nsaDR6j9Wc", - "tick": "144" - }, - { - "state": "srs129a2JEbQNKnm21VJeRwNX56MNZ17zgjiiJLmRsL1shksgkooSY", - "tick": "162" - }, - { - "state": "srs12ttseoBU2CNUdydkU7xUqPW7KCXH3VrtKhkL351nnb5zpC2NKC", - "tick": "180" - }, - { - "state": "srs12evbqRoyoHXHuuLe93J7McHNey7AF77cFrdjSvnZxBtocvGwiE", - "tick": "198" - }, - { - "state": "srs12vTfr7F36yKJNUC5wF7uS2o2LZc8HtDcCqZYovtM5A1TXJ8PnU", - "tick": "216" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs12xuEMEAazvjTXRo4WJvV641NwUHCNAkAcFsWC7BLJ8fAoU39UR", - "tick": "252" - }, - { - "state": "srs12oGMtTEe9TiV83TV94o2GCbocjevfePoAJ6CrW48MUKu3bbwFm", - "tick": "270" - }, - { - "state": "srs12G5mFi3rfsENNaMdALNgSybuvUuZWzQs7fkaUQbPjmyRdcroFU", - "tick": "288" - }, - { - "state": "srs12PnwkMq4h6uyDAdtDcNCobfsUTjmnJ1SsLoe4o3idirjvtcbxj", - "tick": "306" - }, - { - "state": "srs13A56qE7mUQZtaESaQjPAxjWSXbRnbP6SqgGeyhR7vbZLkmsS5k", - "tick": "324" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs12J7QgVeLT4R7opWp7qrX7iZ85vB1R2gryGo6Hhwsk96uKijU53", - "tick": "360" - }, - { - "state": "srs11agUZZjbT5v3KgNXWi8wa7ixdiiKygFgoBQvAjLW6BHw1Aar4e", - "tick": "378" - }, - { - "state": "srs12p4EsDDZE9nNh8hVLf3FMrPGDXVg6KDUo1RmLkDmKLhJ3y7t7P", - "tick": "396" - }, - { - "state": "srs1213x6ako5pAMs8coXp2L9HfCj4aELEVLncLfB6ECNkaWDPbsNh", - "tick": "414" - }, - { - "state": "srs125LwkZoUJSP3iRou4tuQxWAZbGkaZy3ypFmLjYTPy5PAG5o1b4", - "tick": "432" - }, - { - "state": "srs11oPWrZXyBJDvJGs1gD66tuTQYwQ75AUx8Zqo9r7eTr7mT4KmPA", - "tick": "450" - }, - { - "state": "srs13A3qiQDaFFjW7uniVdTWdeNi7FNwyV5KBFEeWWX4JpY22yidBs", - "tick": "468" - }, - { - "state": "srs11ksHqrcDxHrQcVqPTBAcypR3PszdPBv5ggqqrmf2qwK1wK9cy2", - "tick": "486" - }, - { - "state": "srs12yYosmVjDV3i1JxUhTWtmMTEqDgv6rZBgJVvFcudZqxp8tf53f", - "tick": "504" - }, - { - "state": "srs12PMeq4iivEsJxsvjZfHYkQet3WBXbZduq6CDqaX1n7Vizwv1iM", - "tick": "522" - }, - { - "state": "srs12VUFV5VnnX146m4xz2CNHmq86iLpthdDzgxmt7bdhPyynx6MNm", - "tick": "540" - }, - { - "state": "srs12zjyN9hjk4RhNi8BSLQfddUhDXujU2YvoNKZAnXSVkhpgc5fwM", - "tick": "558" - }, - { - "state": "srs12BpWKZmJUaEoa9CQd6gqxSxcN5JWHCmTafFKvA2sfa8yugT8QJ", - "tick": "582" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "1", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11a79oWyLSNtvZZ2UG64HmZ5stmsuKeM3FXeFiBuri4448u5ytJ", - "tick": "1" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (reset_honest_during_game).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (reset_honest_during_game).out deleted file mode 100644 index 2456686d0f19..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (reset_honest_during_game).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "582", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11aPE6xa3SzUNtSNWmNCy2AUPQizTXNLESgiSSz3qqypJ4xsV1S", - "tick": "18" - }, - { - "state": "srs11iEwekiQpQZHVUgqaudDGtkxeHQAtcdWovxC2qnmPka4aVdRdv", - "tick": "36" - }, - { - "state": "srs11zXgJVFEN4GWETPxabgWiWwdoPqmYHNzVzJJSyMD1nw9qY6BjB", - "tick": "54" - }, - { - "state": "srs12LrLWsNcXUUcXhwGwjw4NwUB4CZxPsDhkw893F6GRG24Jr3bc6", - "tick": "72" - }, - { - "state": "srs12P7pB4oK1w85qRQf2PUzYzkRkAYMjdTMRmMPpoKaVSnvqSiwCa", - "tick": "90" - }, - { - "state": "srs11xhx6fj9usqvxZix1Z9VVYKmtzXq6aPgqU3RTHcuJWMoRWcD5J", - "tick": "108" - }, - { - "state": "srs13FNnKDSq83db7a4ySUqecN1tTHpoU6tuDmyjxoziRD5mWZqY5U", - "tick": "126" - }, - { - "state": "srs127C5MpG6jjtEknTv7qykwnhh1rkYfen2ooVPpsC7nsaDR6j9Wc", - "tick": "144" - }, - { - "state": "srs129a2JEbQNKnm21VJeRwNX56MNZ17zgjiiJLmRsL1shksgkooSY", - "tick": "162" - }, - { - "state": "srs12ttseoBU2CNUdydkU7xUqPW7KCXH3VrtKhkL351nnb5zpC2NKC", - "tick": "180" - }, - { - "state": "srs12evbqRoyoHXHuuLe93J7McHNey7AF77cFrdjSvnZxBtocvGwiE", - "tick": "198" - }, - { - "state": "srs12vTfr7F36yKJNUC5wF7uS2o2LZc8HtDcCqZYovtM5A1TXJ8PnU", - "tick": "216" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs12xuEMEAazvjTXRo4WJvV641NwUHCNAkAcFsWC7BLJ8fAoU39UR", - "tick": "252" - }, - { - "state": "srs12oGMtTEe9TiV83TV94o2GCbocjevfePoAJ6CrW48MUKu3bbwFm", - "tick": "270" - }, - { - "state": "srs12G5mFi3rfsENNaMdALNgSybuvUuZWzQs7fkaUQbPjmyRdcroFU", - "tick": "288" - }, - { - "state": "srs12PnwkMq4h6uyDAdtDcNCobfsUTjmnJ1SsLoe4o3idirjvtcbxj", - "tick": "306" - }, - { - "state": "srs13A56qE7mUQZtaESaQjPAxjWSXbRnbP6SqgGeyhR7vbZLkmsS5k", - "tick": "324" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs12J7QgVeLT4R7opWp7qrX7iZ85vB1R2gryGo6Hhwsk96uKijU53", - "tick": "360" - }, - { - "state": "srs11agUZZjbT5v3KgNXWi8wa7ixdiiKygFgoBQvAjLW6BHw1Aar4e", - "tick": "378" - }, - { - "state": "srs12p4EsDDZE9nNh8hVLf3FMrPGDXVg6KDUo1RmLkDmKLhJ3y7t7P", - "tick": "396" - }, - { - "state": "srs1213x6ako5pAMs8coXp2L9HfCj4aELEVLncLfB6ECNkaWDPbsNh", - "tick": "414" - }, - { - "state": "srs125LwkZoUJSP3iRou4tuQxWAZbGkaZy3ypFmLjYTPy5PAG5o1b4", - "tick": "432" - }, - { - "state": "srs11oPWrZXyBJDvJGs1gD66tuTQYwQ75AUx8Zqo9r7eTr7mT4KmPA", - "tick": "450" - }, - { - "state": "srs13A3qiQDaFFjW7uniVdTWdeNi7FNwyV5KBFEeWWX4JpY22yidBs", - "tick": "468" - }, - { - "state": "srs11ksHqrcDxHrQcVqPTBAcypR3PszdPBv5ggqqrmf2qwK1wK9cy2", - "tick": "486" - }, - { - "state": "srs12yYosmVjDV3i1JxUhTWtmMTEqDgv6rZBgJVvFcudZqxp8tf53f", - "tick": "504" - }, - { - "state": "srs12PMeq4iivEsJxsvjZfHYkQet3WBXbZduq6CDqaX1n7Vizwv1iM", - "tick": "522" - }, - { - "state": "srs12VUFV5VnnX146m4xz2CNHmq86iLpthdDzgxmt7bdhPyynx6MNm", - "tick": "540" - }, - { - "state": "srs12zjyN9hjk4RhNi8BSLQfddUhDXujU2YvoNKZAnXSVkhpgc5fwM", - "tick": "558" - }, - { - "state": "srs12BpWKZmJUaEoa9CQd6gqxSxcN5JWHCmTafFKvA2sfa8yugT8QJ", - "tick": "582" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "121", - "end_tick": "122", - "dissection": [ - { - "state": "srs11oZfvX5xjF9pPtckaUhYnMfPFT5bq7V16ZRQrBtPterf2aHfTa", - "tick": "121" - }, - { - "state": "srs12NMUCUm6LBBHAUmGe9TeVht1N9nHG54VwM1SmA8i6zgVme1ws5", - "tick": "122" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (timeout).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (timeout).out deleted file mode 100644 index 2456686d0f19..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- arith - refutation games winning strategies (timeout).out +++ /dev/null @@ -1,158 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "582", - "dissection": [ - { - "state": "srs136U2KJweAXf7Excw61Zeu5R5L7mi2TCb1WKkowQJ6UdHJ2VZWS", - "tick": "0" - }, - { - "state": "srs11aPE6xa3SzUNtSNWmNCy2AUPQizTXNLESgiSSz3qqypJ4xsV1S", - "tick": "18" - }, - { - "state": "srs11iEwekiQpQZHVUgqaudDGtkxeHQAtcdWovxC2qnmPka4aVdRdv", - "tick": "36" - }, - { - "state": "srs11zXgJVFEN4GWETPxabgWiWwdoPqmYHNzVzJJSyMD1nw9qY6BjB", - "tick": "54" - }, - { - "state": "srs12LrLWsNcXUUcXhwGwjw4NwUB4CZxPsDhkw893F6GRG24Jr3bc6", - "tick": "72" - }, - { - "state": "srs12P7pB4oK1w85qRQf2PUzYzkRkAYMjdTMRmMPpoKaVSnvqSiwCa", - "tick": "90" - }, - { - "state": "srs11xhx6fj9usqvxZix1Z9VVYKmtzXq6aPgqU3RTHcuJWMoRWcD5J", - "tick": "108" - }, - { - "state": "srs13FNnKDSq83db7a4ySUqecN1tTHpoU6tuDmyjxoziRD5mWZqY5U", - "tick": "126" - }, - { - "state": "srs127C5MpG6jjtEknTv7qykwnhh1rkYfen2ooVPpsC7nsaDR6j9Wc", - "tick": "144" - }, - { - "state": "srs129a2JEbQNKnm21VJeRwNX56MNZ17zgjiiJLmRsL1shksgkooSY", - "tick": "162" - }, - { - "state": "srs12ttseoBU2CNUdydkU7xUqPW7KCXH3VrtKhkL351nnb5zpC2NKC", - "tick": "180" - }, - { - "state": "srs12evbqRoyoHXHuuLe93J7McHNey7AF77cFrdjSvnZxBtocvGwiE", - "tick": "198" - }, - { - "state": "srs12vTfr7F36yKJNUC5wF7uS2o2LZc8HtDcCqZYovtM5A1TXJ8PnU", - "tick": "216" - }, - { - "state": "srs12djGRCs6trFxhoS5Vpe4JztpMV1q7noBvX2k18CRU6LGyNDWLv", - "tick": "234" - }, - { - "state": "srs12xuEMEAazvjTXRo4WJvV641NwUHCNAkAcFsWC7BLJ8fAoU39UR", - "tick": "252" - }, - { - "state": "srs12oGMtTEe9TiV83TV94o2GCbocjevfePoAJ6CrW48MUKu3bbwFm", - "tick": "270" - }, - { - "state": "srs12G5mFi3rfsENNaMdALNgSybuvUuZWzQs7fkaUQbPjmyRdcroFU", - "tick": "288" - }, - { - "state": "srs12PnwkMq4h6uyDAdtDcNCobfsUTjmnJ1SsLoe4o3idirjvtcbxj", - "tick": "306" - }, - { - "state": "srs13A56qE7mUQZtaESaQjPAxjWSXbRnbP6SqgGeyhR7vbZLkmsS5k", - "tick": "324" - }, - { - "state": "srs11zaB4DddxNYNtS2R2iUDRDhczPuaiWUumgfvGRJp75btAviU6v", - "tick": "342" - }, - { - "state": "srs12J7QgVeLT4R7opWp7qrX7iZ85vB1R2gryGo6Hhwsk96uKijU53", - "tick": "360" - }, - { - "state": "srs11agUZZjbT5v3KgNXWi8wa7ixdiiKygFgoBQvAjLW6BHw1Aar4e", - "tick": "378" - }, - { - "state": "srs12p4EsDDZE9nNh8hVLf3FMrPGDXVg6KDUo1RmLkDmKLhJ3y7t7P", - "tick": "396" - }, - { - "state": "srs1213x6ako5pAMs8coXp2L9HfCj4aELEVLncLfB6ECNkaWDPbsNh", - "tick": "414" - }, - { - "state": "srs125LwkZoUJSP3iRou4tuQxWAZbGkaZy3ypFmLjYTPy5PAG5o1b4", - "tick": "432" - }, - { - "state": "srs11oPWrZXyBJDvJGs1gD66tuTQYwQ75AUx8Zqo9r7eTr7mT4KmPA", - "tick": "450" - }, - { - "state": "srs13A3qiQDaFFjW7uniVdTWdeNi7FNwyV5KBFEeWWX4JpY22yidBs", - "tick": "468" - }, - { - "state": "srs11ksHqrcDxHrQcVqPTBAcypR3PszdPBv5ggqqrmf2qwK1wK9cy2", - "tick": "486" - }, - { - "state": "srs12yYosmVjDV3i1JxUhTWtmMTEqDgv6rZBgJVvFcudZqxp8tf53f", - "tick": "504" - }, - { - "state": "srs12PMeq4iivEsJxsvjZfHYkQet3WBXbZduq6CDqaX1n7Vizwv1iM", - "tick": "522" - }, - { - "state": "srs12VUFV5VnnX146m4xz2CNHmq86iLpthdDzgxmt7bdhPyynx6MNm", - "tick": "540" - }, - { - "state": "srs12zjyN9hjk4RhNi8BSLQfddUhDXujU2YvoNKZAnXSVkhpgc5fwM", - "tick": "558" - }, - { - "state": "srs12BpWKZmJUaEoa9CQd6gqxSxcN5JWHCmTafFKvA2sfa8yugT8QJ", - "tick": "582" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "121", - "end_tick": "122", - "dissection": [ - { - "state": "srs11oZfvX5xjF9pPtckaUhYnMfPFT5bq7V16ZRQrBtPterf2aHfTa", - "tick": "121" - }, - { - "state": "srs12NMUCUm6LBBHAUmGe9TeVht1N9nHG54VwM1SmA8i6zgVme1ws5", - "tick": "122" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - RPC API should work and be stable.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - RPC API should work and be stable.out deleted file mode 100644 index 6731d937d593..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - RPC API should work and be stable.out +++ /dev/null @@ -1,275 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind wasm_2_0_0 of type string with kernel 0061736d0100000001280760037f7f7f017f60027f7f017f60057f7f7f7f7f017f60017f0060017f017f60027f7f0060000002610311736d6172745f726f6c6c75705f636f72650a726561645f696e707574000011736d6172745f726f6c6c75705f636f72650c77726974655f6f7574707574000111736d6172745f726f6c6c75705f636f72650b73746f72655f77726974650002030504030405060503010001071402036d656d02000a6b65726e656c5f72756e00060aa401042a01027f41fa002f0100210120002f010021022001200247044041e4004112410041e400410010021a0b0b0800200041c4006b0b5001057f41fe002d0000210341fc002f0100210220002d0000210420002f0100210520011004210620042003460440200041016a200141016b10011a0520052002460440200041076a200610011a0b0b0b1d01017f41dc0141840241901c100021004184022000100541840210030b0b38050041e4000b122f6b65726e656c2f656e762f7265626f6f740041f8000b0200010041fa000b0200020041fc000b0200000041fe000b0101 --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1934.036 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000971 - Expected counter: 1 - Gas limit: 2035 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000971 - payload fees(the block proposer) ....... +ꜩ0.000971 - Smart rollup origination: - Kind: wasm_2_0_0 - Parameter type: string - Kernel Blake2B hash: '24df9e3c520dd9a9c49b447766e8a604d31138c1aacb4a67532499c6a8b348cc' - This smart rollup origination was successfully applied - Consumed gas: 1934.003 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" -GET http://[HOST]:[PORT]/global/smart_rollup_address -200 OK -"[SMART_ROLLUP_HASH]" - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "312d31", - "312d32", - "312d33", - "312d34", - "312d35" -] -200 OK -["scmsg37MjxsWwLdnhRqRn8suc1oMvpa9riqGvazTg7giMNKDDU56Qfv","scmsg3X1MAjzt2B4r6gZnLf7mzoRf9UohkLw3Q2DTzLKctivKPYLXZ9","scmsg3prfVZhL8jFf5LSmxijjd96pKcz98ws6xe81qKagYcSg53e22N","scmsg2SY3VZWZ8y8491xbXvn8tQtHRCAq3zPJWQ7n4K6Rusw2YKVyNx","scmsg2zdjgY1tnuHMZqMavgPyc7qNj9MMvY4ywd38yauj3WfaiqDieE"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "322d31", - "322d32", - "322d33", - "322d34", - "322d35" -] -200 OK -["scmsg33G4qMwJ869CUzuYWpsdF9bnQ4ezN2YHyERN64j2Q4t9L99CnA","scmsg3ew4TRYot9RPWjagZdNGdSTD3wzUAKU5WFz6JosGBtEr1UT5o5","scmsg3Q6eecZLng9BK7maLP1DGqRpfbygCsQj8vPxc3USjpQxhCfEkn","scmsg2GAoC8FEUfHZfQAKotvjRMpmSknHRpn4w35Y1YWZ4uVZDYvzUL","scmsg2sqy4npoYQq8iWJWQQgrdG126y3Btxn8ZzVPav8JmptWnVowGz"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "332d31", - "332d32", - "332d33", - "332d34", - "332d35" -] -200 OK -["scmsg3EYkw2o4MC45NXUKZsEpzugW9sfumidS78TC8ygnJJznyAe9Yb","scmsg23CHWGTe3u8Utu3RpafBSEzvwnBKNRLxufPp8QindEWanu8UB6","scmsg3WnqzTRN8wvANvLKV4MouiTQZzq7X2G3CfKcomuQy4nKDFGRhX","scmsg3PVb7jXpE723XWdC1B8L34wVenMTi8r4b62Qja6owSMVo3h73C","scmsg2BZBgg1AFG7Zsar6DD1ZKPK36UakNZNj78npg6SUBoR26FpBdQ"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "342d31", - "342d32", - "342d33", - "342d34", - "342d35" -] -200 OK -["scmsg3BLN9sVbJN6BrDh8mu3yDYeVfTBnm83Ciom55sS3dKvvXMk1nR","scmsg2Nsbi6zbwQUTwpBVcTEhi7oVWxbuka1kiHMJ9BLiUg8QfzyLYM","scmsg3Ti1eX6WyPXKjy3NdkJnQdzi5RbkFJ8piWhEpDQwWn8VdNMuCK","scmsg3TMS4Q8jtUhr6YcgkMqwWAXKkXLJMhSRvJcMEgq61t8xftRMFv","scmsg2AWA1jULPBJb7usha9gJg62T5PdiW9Uz1HdHLhaYDRx4qRvLTL"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "352d31", - "352d32", - "352d33", - "352d34", - "352d35" -] -200 OK -["scmsg26t9x2GH9Pt9hiGLnSyNRALPzL8BYcTHik6PvU4vGDbUYM6JkV","scmsg3rtv5BpkWSR835sbwXJDBYZZW1ptXr8KKxprn4nJnhSacn6t1R","scmsg32QBihqJwKecppnv3o4MpRVYycR6puAHyhZhDVtewFQwmTdR3Z","scmsg3LQsvXBvj1qDWFRACbLuyAbZK6tHVTUeiYsPSU9KGxyf6ySxrY","scmsg3oXBwG2rAT3cjgDbRNyBnTirrkqTAeVMxMSJ5KUno8daWpY2rL"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "362d31", - "362d32", - "362d33", - "362d34", - "362d35" -] -200 OK -["scmsg2pUJoCjenPKAK3WnftrcnnKFf8RjTmoie2PS5Xa9jh2f6V4CpU","scmsg3M61S4suJDXn1yZyQrk9iy3WrDTXbPA6JHaeDWMjUJ4bhFTyAf","scmsg3SSJRKjcqvMFg2y6tuKWbikFx49kE5PfGg71uhxYdoMHBzutgU","scmsg3MPjHQ6m6BPJaGnAan8kCnadyCbn37DKAZa7LTbTtz3N36JgtW","scmsg2mUAHp9G2cJoqKwr4dpagFK6Wa4cNu7NGPXXB3zTfCpLmCP3Yr"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "372d31", - "372d32", - "372d33", - "372d34", - "372d35" -] -200 OK -["scmsg2VzSQUy8uj6yXYjwhLp2Qsmr77NixYmsXqqBGJpGsSxVBZHBPN","scmsg2p1iyQ4MHjNZrZhRmatcGXCzSr3Af7GKg6jawijWAe5ZpwFUMR","scmsg2xU6itfmj6XeuzYVqGza4Z95uAUXG44mnkM8uKkkdmbv8DyhS3","scmsg3YhsmhbfMXKmhsjGXej2ySwYFDYKQE1yUs7LcVkZ2ikaotWQKg","scmsg28neefD54Wsf46QgPtv22mKT32oNFv5ToU95DDsufcWFCZoovM"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "382d31", - "382d32", - "382d33", - "382d34", - "382d35" -] -200 OK -["scmsg3krb3ZX2JqPJkoBkrrFJcEtguu4sJDFS1XukN4PboYfxVRMZB8","scmsg2CXLxs8exJxS49Fi1bQFHhyy27fpTUwNZ8xhbuyd2uo4YmgWYL","scmsg2XJwuzAw5tZhfiTpUoDNSiM56W97YNEB4YyzGnrBcEgYpL9KMh","scmsg3RM54nLATBFqzCjvSwPybSbiiWJZey2ZiLbe1gjr9v9Vmoc9H3","scmsg2NpFWt1MhyDGhacEUpaeEheC8XWzNC3LaNaECXwzpi39QqPX14"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "392d31", - "392d32", - "392d33", - "392d34", - "392d35" -] -200 OK -["scmsg2nWa7VYthVQxL9antueegTTcyGzTqZzbFPVibWk8xzRGWvfdt8","scmsg3KfqCW3JtQAFWYUUKfaxUZ3zeR8t6233UU5frsUgZXjwyRaftR","scmsg2TJRQjXv5VYgrcVYM4upqfptRz4gLmDV1AMLcxqGJz2faoKfDK","scmsg2DBhcJVTm8JRWQHLWDXxiCi2PvUZzixqxkqyYupDZW2XU3cdvJ","scmsg2jKWtDbw5Jsdpc453XsgAVBKyYUzt3pKKsZtQNtvJvhPemp4WN"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31302d31", - "31302d32", - "31302d33", - "31302d34", - "31302d35" -] -200 OK -["scmsg3hFFdb5QTM1kbP7UmHviyd6VWfYaT9KTWDcTjE51BtRdjbCJjq","scmsg318GJr61qixBt6P4BxuUZ9zXZGct9fpknY7bky676r8esQjLrt","scmsg2twRwJCXXzvMYcD4Zu3zQSkHjhsDs9ZBczAi4Lvx7ogvJmeCGZ","scmsg3YFj784yYxTr4LbNfaLpHGpN5hKJgbBA8gUEJ4vief5KL8U5vS","scmsg2GY9Q5VTRSrjCPewduDXtPtZZ9hhMshPe3zUToBvFHTD9AhKkB"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31312d31", - "31312d32", - "31312d33", - "31312d34", - "31312d35" -] -200 OK -["scmsg2S7XcHeyAHTQy6cJ6pVgxYqdW7XTBz3PsiCx26gyp2EHfCUJTh","scmsg34AzeCpQWbx2MicoEqumBeh5PzkmeB3XkASNCeEn4u5AC2TQtC","scmsg23m7SEy65fobQJ22FS7dmnHqPe2pmpCaA5iVWA8KYm4ZU3CVfK","scmsg3KLGXHeokSBbJcfsrvRkoAjMt5Yi7nj67WFHh6nkW8Ce8Kd4yn","scmsg2Eaop6LYBSnKMQXqPWijq9fBa4nPw5ZLndHRCH97kumZqLT7pn"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31322d31", - "31322d32", - "31322d33", - "31322d34", - "31322d35" -] -200 OK -["scmsg3Rbcvi4zn7DSuXY8FHordHD4BMqXGi8XhrYAg9Z369qN2qPuPf","scmsg2JtmeQPL8JBY2MgEKx5f6XvH1bJjnqrjTpPVapmDaVBVcGHf8L","scmsg2xrhpVNNsUzYNF7LsNmeAbX2wJsZWE8Ub7DQRe8sToXxSjKR4T","scmsg3HMVWn75kiJ4Lr3KquJNQTkkFtwg9pmiKMythhUJ5h74Nznjd3","scmsg24y1317Sy46HnzTpvCLRe88LghadZ4eAjkb6EzvEsQVRhPbKzu"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31332d31", - "31332d32", - "31332d33", - "31332d34", - "31332d35" -] -200 OK -["scmsg2vjhNLAF3AeKmzkWbwkVELTGnQcEdsPeD6imGgeejsQta46LxA","scmsg2mQYGCav4HTBebHEeeVscAeMGL8d17eDZSCeTEBsukRyri51mZ","scmsg3CyDxp7PAws2HXGTyCeeamNDCs3acBnN7Jymj3GVW3WCS1GKEz","scmsg2Safqm8tXs1k51v1A7VMyALCDRn5DAgYCJ9kbUD38jwPqtob6B","scmsg28V9X7iiXCDZM4mFCHKsMxuvc8wNopLGkcnZwo14sSs4dW1E73"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31342d31", - "31342d32", - "31342d33", - "31342d34", - "31342d35" -] -200 OK -["scmsg2LeoW8SZzjCREGXpS2kwSfWCQBLf4M39gCQbuo7MPdcNUQgskZ","scmsg3KJEQRBNfv4DUb4LCA7EWAh9swowVibwH4Hx7CYn4mjFTEKNfC","scmsg2fWu16weRJCcgdvJzNtdWDNATvftgUVFfpgi5z3BDn9h2zE1Z2","scmsg29adqVUp1NnCAVSZVaKCVbrUdMth3C1yuUvBRZtmW9hsDtm8d1","scmsg2cDM9bscYDvXwkeB6h7RmN82wFgmL3wv5jJmwJukS9ju5zgKWA"] - -POST http://[HOST]:[PORT]/local/batcher/injection -Content-type: application/json -[ - "31352d31", - "31352d32", - "31352d33", - "31352d34", - "31352d35" -] -200 OK -["scmsg2DSE1zcsJXhEFsAFMo3qN7jV13LoxrG6qa1RaJtUFkPgJCBN5R","scmsg2StxsCnbG5vQmzdiY3F4M5bsrkb6Qh3CyrMod5thRVAbZHd38c","scmsg3fzM3qS4iPZ6qGHCNfupVUKiuYmrNe4k13uUj3ggrzX6rayaVA","scmsg3qHUB6rys7GmC8XGGKRDrcKX2veZGkT9SkScHyWqLUCjq9PLjx","scmsg3ZVMYBmAPwFfLDNXFDcBGzRChdFzLJ8tUMW46mGPGumZ6aq79q"] - -GET http://[HOST]:[PORT]/global/block/head/hash -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/block/5/hash -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/block/finalized/level -200 OK -16 - -GET http://[HOST]:[PORT]/global/block/head/num_messages -200 OK -"8" - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/value?key=/kernel/boot.wasm -200 OK -"0061736d0100000001280760037f7f7f017f60027f7f017f60057f7f7f7f7f017f60017f0060017f017f60027f7f0060000002610311736d6172745f726f6c6c75705f636f72650a726561645f696e707574000011736d6172745f726f6c6c75705f636f72650c77726974655f6f7574707574000111736d6172745f726f6c6c75705f636f72650b73746f72655f77726974650002030504030405060503010001071402036d656d02000a6b65726e656c5f72756e00060aa401042a01027f41fa002f0100210120002f010021022001200247044041e4004112410041e400410010021a0b0b0800200041c4006b0b5001057f41fe002d0000210341fc002f0100210220002d0000210420002f0100210520011004210620042003460440200041016a200141016b10011a0520052002460440200041076a200610011a0b0b0b1d01017f41dc0141840241901c100021004184022000100541840210030b0b38050041e4000b122f6b65726e656c2f656e762f7265626f6f740041f8000b0200010041fa000b0200020041fc000b0200000041fe000b0101" - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/value?key=/kernel/boot.wasm2 -200 OK -null - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/value?key=/readonly/wasm_version -200 OK -"322e302e302d7231" - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/length?key=/readonly/wasm_version -200 OK -"8" - -GET http://[HOST]:[PORT]/global/block/head/durable/wasm_2_0_0/subkeys?key=/readonly/kernel -200 OK -["boot.wasm","env"] - -GET http://[HOST]:[PORT]/global/block/head/status -200 OK -"Waiting for input message" - -GET http://[HOST]:[PORT]/global/block/head/ticks -200 OK -"99000000000" - -GET http://[HOST]:[PORT]/global/block/head/state_hash -200 OK -"[SC_ROLLUP_PVM_STATE_HASH]" - -GET http://[HOST]:[PORT]/global/tezos_head -200 OK -"[BLOCK_HASH]" - -GET http://[HOST]:[PORT]/global/tezos_level -200 OK -18 - diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - origination of a SCORU executes without error.out deleted file mode 100644 index 6cf48559d4e0..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - origination of a SCORU executes without error.out +++ /dev/null @@ -1,35 +0,0 @@ - -./octez-client --wait none originate smart rollup rollup from bootstrap1 of kind wasm_2_0_0 of type string with kernel 0061736d0100000001280760037f7f7f017f60027f7f017f60057f7f7f7f7f017f60017f0060017f017f60027f7f0060000002610311736d6172745f726f6c6c75705f636f72650a726561645f696e707574000011736d6172745f726f6c6c75705f636f72650c77726974655f6f7574707574000111736d6172745f726f6c6c75705f636f72650b73746f72655f77726974650002030504030405060503010001071402036d656d02000a6b65726e656c5f72756e00060aa401042a01027f41fa002f0100210120002f010021022001200247044041e4004112410041e400410010021a0b0b0800200041c4006b0b5001057f41fe002d0000210341fc002f0100210220002d0000210420002f0100210520011004210620042003460440200041016a200141016b10011a0520052002460440200041076a200610011a0b0b0b1d01017f41dc0141840241901c100021004184022000100541840210030b0b38050041e4000b122f6b65726e656c2f656e762f7265626f6f740041f8000b0200010041fa000b0200020041fc000b0200000041fe000b0101 --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 1934.036 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000971 - Expected counter: 1 - Gas limit: 2035 - Storage limit: 6572 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000971 - payload fees(the block proposer) ....... +ꜩ0.000971 - Smart rollup origination: - Kind: wasm_2_0_0 - Parameter type: string - Kernel Blake2B hash: '24df9e3c520dd9a9c49b447766e8a604d31138c1aacb4a67532499c6a8b348cc' - This smart rollup origination was successfully applied - Consumed gas: 1934.003 - Storage size: 6552 bytes - Address: [SMART_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 - -Smart rollup [SMART_ROLLUP_HASH] memorized as "rollup" diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_0).out deleted file mode 100644 index 5cf83e4cfa9a..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_0).out +++ /dev/null @@ -1,357 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "22000000000", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "11000000000" - }, - { - "tick": "22000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "343750000", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10742187" - }, - { - "tick": "21484374" - }, - { - "tick": "32226561" - }, - { - "tick": "42968748" - }, - { - "tick": "53710935" - }, - { - "tick": "64453122" - }, - { - "tick": "75195309" - }, - { - "tick": "85937496" - }, - { - "tick": "96679683" - }, - { - "tick": "107421870" - }, - { - "tick": "118164057" - }, - { - "tick": "128906244" - }, - { - "tick": "139648431" - }, - { - "tick": "150390618" - }, - { - "tick": "161132805" - }, - { - "tick": "171874992" - }, - { - "tick": "182617179" - }, - { - "tick": "193359366" - }, - { - "tick": "204101553" - }, - { - "tick": "214843740" - }, - { - "tick": "225585927" - }, - { - "tick": "236328114" - }, - { - "tick": "247070301" - }, - { - "tick": "257812488" - }, - { - "tick": "268554675" - }, - { - "tick": "279296862" - }, - { - "tick": "290039049" - }, - { - "tick": "300781236" - }, - { - "tick": "311523423" - }, - { - "tick": "322265610" - }, - { - "tick": "333007797" - }, - { - "tick": "343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "335693", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10490" - }, - { - "tick": "20980" - }, - { - "tick": "31470" - }, - { - "tick": "41960" - }, - { - "tick": "52450" - }, - { - "tick": "62940" - }, - { - "tick": "73430" - }, - { - "tick": "83920" - }, - { - "tick": "94410" - }, - { - "tick": "104900" - }, - { - "tick": "115390" - }, - { - "tick": "125880" - }, - { - "tick": "136370" - }, - { - "tick": "146860" - }, - { - "tick": "157350" - }, - { - "tick": "167840" - }, - { - "tick": "178330" - }, - { - "tick": "188820" - }, - { - "tick": "199310" - }, - { - "tick": "209800" - }, - { - "tick": "220290" - }, - { - "tick": "230780" - }, - { - "tick": "241270" - }, - { - "tick": "251760" - }, - { - "tick": "262250" - }, - { - "tick": "272740" - }, - { - "tick": "283230" - }, - { - "tick": "293720" - }, - { - "tick": "304210" - }, - { - "tick": "314700" - }, - { - "tick": "325190" - }, - { - "tick": "335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "327", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10" - }, - { - "tick": "20" - }, - { - "tick": "30" - }, - { - "tick": "40" - }, - { - "tick": "50" - }, - { - "tick": "60" - }, - { - "tick": "70" - }, - { - "tick": "80" - }, - { - "tick": "90" - }, - { - "tick": "100" - }, - { - "tick": "110" - }, - { - "tick": "120" - }, - { - "tick": "130" - }, - { - "tick": "140" - }, - { - "tick": "150" - }, - { - "tick": "160" - }, - { - "tick": "170" - }, - { - "tick": "180" - }, - { - "tick": "190" - }, - { - "tick": "200" - }, - { - "tick": "210" - }, - { - "tick": "220" - }, - { - "tick": "230" - }, - { - "tick": "240" - }, - { - "tick": "250" - }, - { - "tick": "260" - }, - { - "tick": "270" - }, - { - "tick": "280" - }, - { - "tick": "290" - }, - { - "tick": "300" - }, - { - "tick": "310" - }, - { - "tick": "327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "1", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "1" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_1).out deleted file mode 100644 index c62802d88db7..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (inbox_proof_1).out +++ /dev/null @@ -1,357 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "22000000000", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "11000000000" - }, - { - "tick": "22000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "343750000", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10742187" - }, - { - "tick": "21484374" - }, - { - "tick": "32226561" - }, - { - "tick": "42968748" - }, - { - "tick": "53710935" - }, - { - "tick": "64453122" - }, - { - "tick": "75195309" - }, - { - "tick": "85937496" - }, - { - "tick": "96679683" - }, - { - "tick": "107421870" - }, - { - "tick": "118164057" - }, - { - "tick": "128906244" - }, - { - "tick": "139648431" - }, - { - "tick": "150390618" - }, - { - "tick": "161132805" - }, - { - "tick": "171874992" - }, - { - "tick": "182617179" - }, - { - "tick": "193359366" - }, - { - "tick": "204101553" - }, - { - "tick": "214843740" - }, - { - "tick": "225585927" - }, - { - "tick": "236328114" - }, - { - "tick": "247070301" - }, - { - "tick": "257812488" - }, - { - "tick": "268554675" - }, - { - "tick": "279296862" - }, - { - "tick": "290039049" - }, - { - "tick": "300781236" - }, - { - "tick": "311523423" - }, - { - "tick": "322265610" - }, - { - "tick": "333007797" - }, - { - "tick": "343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "335693", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10490" - }, - { - "tick": "20980" - }, - { - "tick": "31470" - }, - { - "tick": "41960" - }, - { - "tick": "52450" - }, - { - "tick": "62940" - }, - { - "tick": "73430" - }, - { - "tick": "83920" - }, - { - "tick": "94410" - }, - { - "tick": "104900" - }, - { - "tick": "115390" - }, - { - "tick": "125880" - }, - { - "tick": "136370" - }, - { - "tick": "146860" - }, - { - "tick": "157350" - }, - { - "tick": "167840" - }, - { - "tick": "178330" - }, - { - "tick": "188820" - }, - { - "tick": "199310" - }, - { - "tick": "209800" - }, - { - "tick": "220290" - }, - { - "tick": "230780" - }, - { - "tick": "241270" - }, - { - "tick": "251760" - }, - { - "tick": "262250" - }, - { - "tick": "272740" - }, - { - "tick": "283230" - }, - { - "tick": "293720" - }, - { - "tick": "304210" - }, - { - "tick": "314700" - }, - { - "tick": "325190" - }, - { - "tick": "335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "0", - "end_tick": "327", - "dissection": [ - { - "tick": "0" - }, - { - "tick": "10" - }, - { - "tick": "20" - }, - { - "tick": "30" - }, - { - "tick": "40" - }, - { - "tick": "50" - }, - { - "tick": "60" - }, - { - "tick": "70" - }, - { - "tick": "80" - }, - { - "tick": "90" - }, - { - "tick": "100" - }, - { - "tick": "110" - }, - { - "tick": "120" - }, - { - "tick": "130" - }, - { - "tick": "140" - }, - { - "tick": "150" - }, - { - "tick": "160" - }, - { - "tick": "170" - }, - { - "tick": "180" - }, - { - "tick": "190" - }, - { - "tick": "200" - }, - { - "tick": "210" - }, - { - "tick": "220" - }, - { - "tick": "230" - }, - { - "tick": "240" - }, - { - "tick": "250" - }, - { - "tick": "260" - }, - { - "tick": "270" - }, - { - "tick": "280" - }, - { - "tick": "290" - }, - { - "tick": "300" - }, - { - "tick": "310" - }, - { - "tick": "327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "4", - "end_tick": "5", - "dissection": [ - { - "tick": "4" - }, - { - "tick": "5" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out deleted file mode 100644 index 97cf7e39daab..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out +++ /dev/null @@ -1,360 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "198000000000", - "end_tick": "231000000000", - "dissection": [ - { - "tick": "198000000000" - }, - { - "tick": "209000000000" - }, - { - "tick": "220000000000" - }, - { - "tick": "231000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "198000000000", - "end_tick": "198343750000", - "dissection": [ - { - "tick": "198000000000" - }, - { - "tick": "198010742187" - }, - { - "tick": "198021484374" - }, - { - "tick": "198032226561" - }, - { - "tick": "198042968748" - }, - { - "tick": "198053710935" - }, - { - "tick": "198064453122" - }, - { - "tick": "198075195309" - }, - { - "tick": "198085937496" - }, - { - "tick": "198096679683" - }, - { - "tick": "198107421870" - }, - { - "tick": "198118164057" - }, - { - "tick": "198128906244" - }, - { - "tick": "198139648431" - }, - { - "tick": "198150390618" - }, - { - "tick": "198161132805" - }, - { - "tick": "198171874992" - }, - { - "tick": "198182617179" - }, - { - "tick": "198193359366" - }, - { - "tick": "198204101553" - }, - { - "tick": "198214843740" - }, - { - "tick": "198225585927" - }, - { - "tick": "198236328114" - }, - { - "tick": "198247070301" - }, - { - "tick": "198257812488" - }, - { - "tick": "198268554675" - }, - { - "tick": "198279296862" - }, - { - "tick": "198290039049" - }, - { - "tick": "198300781236" - }, - { - "tick": "198311523423" - }, - { - "tick": "198322265610" - }, - { - "tick": "198333007797" - }, - { - "tick": "198343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "198000000000", - "end_tick": "198000335693", - "dissection": [ - { - "tick": "198000000000" - }, - { - "tick": "198000010490" - }, - { - "tick": "198000020980" - }, - { - "tick": "198000031470" - }, - { - "tick": "198000041960" - }, - { - "tick": "198000052450" - }, - { - "tick": "198000062940" - }, - { - "tick": "198000073430" - }, - { - "tick": "198000083920" - }, - { - "tick": "198000094410" - }, - { - "tick": "198000104900" - }, - { - "tick": "198000115390" - }, - { - "tick": "198000125880" - }, - { - "tick": "198000136370" - }, - { - "tick": "198000146860" - }, - { - "tick": "198000157350" - }, - { - "tick": "198000167840" - }, - { - "tick": "198000178330" - }, - { - "tick": "198000188820" - }, - { - "tick": "198000199310" - }, - { - "tick": "198000209800" - }, - { - "tick": "198000220290" - }, - { - "tick": "198000230780" - }, - { - "tick": "198000241270" - }, - { - "tick": "198000251760" - }, - { - "tick": "198000262250" - }, - { - "tick": "198000272740" - }, - { - "tick": "198000283230" - }, - { - "tick": "198000293720" - }, - { - "tick": "198000304210" - }, - { - "tick": "198000314700" - }, - { - "tick": "198000325190" - }, - { - "tick": "198000335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "198000000000", - "end_tick": "198000000327", - "dissection": [ - { - "tick": "198000000000" - }, - { - "tick": "198000000010" - }, - { - "tick": "198000000020" - }, - { - "tick": "198000000030" - }, - { - "tick": "198000000040" - }, - { - "tick": "198000000050" - }, - { - "tick": "198000000060" - }, - { - "tick": "198000000070" - }, - { - "tick": "198000000080" - }, - { - "tick": "198000000090" - }, - { - "tick": "198000000100" - }, - { - "tick": "198000000110" - }, - { - "tick": "198000000120" - }, - { - "tick": "198000000130" - }, - { - "tick": "198000000140" - }, - { - "tick": "198000000150" - }, - { - "tick": "198000000160" - }, - { - "tick": "198000000170" - }, - { - "tick": "198000000180" - }, - { - "tick": "198000000190" - }, - { - "tick": "198000000200" - }, - { - "tick": "198000000210" - }, - { - "tick": "198000000220" - }, - { - "tick": "198000000230" - }, - { - "tick": "198000000240" - }, - { - "tick": "198000000250" - }, - { - "tick": "198000000260" - }, - { - "tick": "198000000270" - }, - { - "tick": "198000000280" - }, - { - "tick": "198000000290" - }, - { - "tick": "198000000300" - }, - { - "tick": "198000000310" - }, - { - "tick": "198000000327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "198000000008", - "end_tick": "198000000009", - "dissection": [ - { - "tick": "198000000008" - }, - { - "tick": "198000000009" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out deleted file mode 100644 index 29b87b472190..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out +++ /dev/null @@ -1,360 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "429000000000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "407000000000" - }, - { - "tick": "418000000000" - }, - { - "tick": "429000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396343750000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396010742187" - }, - { - "tick": "396021484374" - }, - { - "tick": "396032226561" - }, - { - "tick": "396042968748" - }, - { - "tick": "396053710935" - }, - { - "tick": "396064453122" - }, - { - "tick": "396075195309" - }, - { - "tick": "396085937496" - }, - { - "tick": "396096679683" - }, - { - "tick": "396107421870" - }, - { - "tick": "396118164057" - }, - { - "tick": "396128906244" - }, - { - "tick": "396139648431" - }, - { - "tick": "396150390618" - }, - { - "tick": "396161132805" - }, - { - "tick": "396171874992" - }, - { - "tick": "396182617179" - }, - { - "tick": "396193359366" - }, - { - "tick": "396204101553" - }, - { - "tick": "396214843740" - }, - { - "tick": "396225585927" - }, - { - "tick": "396236328114" - }, - { - "tick": "396247070301" - }, - { - "tick": "396257812488" - }, - { - "tick": "396268554675" - }, - { - "tick": "396279296862" - }, - { - "tick": "396290039049" - }, - { - "tick": "396300781236" - }, - { - "tick": "396311523423" - }, - { - "tick": "396322265610" - }, - { - "tick": "396333007797" - }, - { - "tick": "396343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000335693", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000010490" - }, - { - "tick": "396000020980" - }, - { - "tick": "396000031470" - }, - { - "tick": "396000041960" - }, - { - "tick": "396000052450" - }, - { - "tick": "396000062940" - }, - { - "tick": "396000073430" - }, - { - "tick": "396000083920" - }, - { - "tick": "396000094410" - }, - { - "tick": "396000104900" - }, - { - "tick": "396000115390" - }, - { - "tick": "396000125880" - }, - { - "tick": "396000136370" - }, - { - "tick": "396000146860" - }, - { - "tick": "396000157350" - }, - { - "tick": "396000167840" - }, - { - "tick": "396000178330" - }, - { - "tick": "396000188820" - }, - { - "tick": "396000199310" - }, - { - "tick": "396000209800" - }, - { - "tick": "396000220290" - }, - { - "tick": "396000230780" - }, - { - "tick": "396000241270" - }, - { - "tick": "396000251760" - }, - { - "tick": "396000262250" - }, - { - "tick": "396000272740" - }, - { - "tick": "396000283230" - }, - { - "tick": "396000293720" - }, - { - "tick": "396000304210" - }, - { - "tick": "396000314700" - }, - { - "tick": "396000325190" - }, - { - "tick": "396000335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000000327", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000000010" - }, - { - "tick": "396000000020" - }, - { - "tick": "396000000030" - }, - { - "tick": "396000000040" - }, - { - "tick": "396000000050" - }, - { - "tick": "396000000060" - }, - { - "tick": "396000000070" - }, - { - "tick": "396000000080" - }, - { - "tick": "396000000090" - }, - { - "tick": "396000000100" - }, - { - "tick": "396000000110" - }, - { - "tick": "396000000120" - }, - { - "tick": "396000000130" - }, - { - "tick": "396000000140" - }, - { - "tick": "396000000150" - }, - { - "tick": "396000000160" - }, - { - "tick": "396000000170" - }, - { - "tick": "396000000180" - }, - { - "tick": "396000000190" - }, - { - "tick": "396000000200" - }, - { - "tick": "396000000210" - }, - { - "tick": "396000000220" - }, - { - "tick": "396000000230" - }, - { - "tick": "396000000240" - }, - { - "tick": "396000000250" - }, - { - "tick": "396000000260" - }, - { - "tick": "396000000270" - }, - { - "tick": "396000000280" - }, - { - "tick": "396000000290" - }, - { - "tick": "396000000300" - }, - { - "tick": "396000000310" - }, - { - "tick": "396000000327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000008", - "end_tick": "396000000009", - "dissection": [ - { - "tick": "396000000008" - }, - { - "tick": "396000000009" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out deleted file mode 100644 index 29b87b472190..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out +++ /dev/null @@ -1,360 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "429000000000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "407000000000" - }, - { - "tick": "418000000000" - }, - { - "tick": "429000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396343750000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396010742187" - }, - { - "tick": "396021484374" - }, - { - "tick": "396032226561" - }, - { - "tick": "396042968748" - }, - { - "tick": "396053710935" - }, - { - "tick": "396064453122" - }, - { - "tick": "396075195309" - }, - { - "tick": "396085937496" - }, - { - "tick": "396096679683" - }, - { - "tick": "396107421870" - }, - { - "tick": "396118164057" - }, - { - "tick": "396128906244" - }, - { - "tick": "396139648431" - }, - { - "tick": "396150390618" - }, - { - "tick": "396161132805" - }, - { - "tick": "396171874992" - }, - { - "tick": "396182617179" - }, - { - "tick": "396193359366" - }, - { - "tick": "396204101553" - }, - { - "tick": "396214843740" - }, - { - "tick": "396225585927" - }, - { - "tick": "396236328114" - }, - { - "tick": "396247070301" - }, - { - "tick": "396257812488" - }, - { - "tick": "396268554675" - }, - { - "tick": "396279296862" - }, - { - "tick": "396290039049" - }, - { - "tick": "396300781236" - }, - { - "tick": "396311523423" - }, - { - "tick": "396322265610" - }, - { - "tick": "396333007797" - }, - { - "tick": "396343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000335693", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000010490" - }, - { - "tick": "396000020980" - }, - { - "tick": "396000031470" - }, - { - "tick": "396000041960" - }, - { - "tick": "396000052450" - }, - { - "tick": "396000062940" - }, - { - "tick": "396000073430" - }, - { - "tick": "396000083920" - }, - { - "tick": "396000094410" - }, - { - "tick": "396000104900" - }, - { - "tick": "396000115390" - }, - { - "tick": "396000125880" - }, - { - "tick": "396000136370" - }, - { - "tick": "396000146860" - }, - { - "tick": "396000157350" - }, - { - "tick": "396000167840" - }, - { - "tick": "396000178330" - }, - { - "tick": "396000188820" - }, - { - "tick": "396000199310" - }, - { - "tick": "396000209800" - }, - { - "tick": "396000220290" - }, - { - "tick": "396000230780" - }, - { - "tick": "396000241270" - }, - { - "tick": "396000251760" - }, - { - "tick": "396000262250" - }, - { - "tick": "396000272740" - }, - { - "tick": "396000283230" - }, - { - "tick": "396000293720" - }, - { - "tick": "396000304210" - }, - { - "tick": "396000314700" - }, - { - "tick": "396000325190" - }, - { - "tick": "396000335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000000327", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000000010" - }, - { - "tick": "396000000020" - }, - { - "tick": "396000000030" - }, - { - "tick": "396000000040" - }, - { - "tick": "396000000050" - }, - { - "tick": "396000000060" - }, - { - "tick": "396000000070" - }, - { - "tick": "396000000080" - }, - { - "tick": "396000000090" - }, - { - "tick": "396000000100" - }, - { - "tick": "396000000110" - }, - { - "tick": "396000000120" - }, - { - "tick": "396000000130" - }, - { - "tick": "396000000140" - }, - { - "tick": "396000000150" - }, - { - "tick": "396000000160" - }, - { - "tick": "396000000170" - }, - { - "tick": "396000000180" - }, - { - "tick": "396000000190" - }, - { - "tick": "396000000200" - }, - { - "tick": "396000000210" - }, - { - "tick": "396000000220" - }, - { - "tick": "396000000230" - }, - { - "tick": "396000000240" - }, - { - "tick": "396000000250" - }, - { - "tick": "396000000260" - }, - { - "tick": "396000000270" - }, - { - "tick": "396000000280" - }, - { - "tick": "396000000290" - }, - { - "tick": "396000000300" - }, - { - "tick": "396000000310" - }, - { - "tick": "396000000327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000008", - "end_tick": "396000000009", - "dissection": [ - { - "tick": "396000000008" - }, - { - "tick": "396000000009" - } - ] -} diff --git a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out deleted file mode 100644 index 29b87b472190..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Nairobi- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out +++ /dev/null @@ -1,360 +0,0 @@ - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "429000000000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "407000000000" - }, - { - "tick": "418000000000" - }, - { - "tick": "429000000000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396343750000", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396010742187" - }, - { - "tick": "396021484374" - }, - { - "tick": "396032226561" - }, - { - "tick": "396042968748" - }, - { - "tick": "396053710935" - }, - { - "tick": "396064453122" - }, - { - "tick": "396075195309" - }, - { - "tick": "396085937496" - }, - { - "tick": "396096679683" - }, - { - "tick": "396107421870" - }, - { - "tick": "396118164057" - }, - { - "tick": "396128906244" - }, - { - "tick": "396139648431" - }, - { - "tick": "396150390618" - }, - { - "tick": "396161132805" - }, - { - "tick": "396171874992" - }, - { - "tick": "396182617179" - }, - { - "tick": "396193359366" - }, - { - "tick": "396204101553" - }, - { - "tick": "396214843740" - }, - { - "tick": "396225585927" - }, - { - "tick": "396236328114" - }, - { - "tick": "396247070301" - }, - { - "tick": "396257812488" - }, - { - "tick": "396268554675" - }, - { - "tick": "396279296862" - }, - { - "tick": "396290039049" - }, - { - "tick": "396300781236" - }, - { - "tick": "396311523423" - }, - { - "tick": "396322265610" - }, - { - "tick": "396333007797" - }, - { - "tick": "396343750000" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000335693", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000010490" - }, - { - "tick": "396000020980" - }, - { - "tick": "396000031470" - }, - { - "tick": "396000041960" - }, - { - "tick": "396000052450" - }, - { - "tick": "396000062940" - }, - { - "tick": "396000073430" - }, - { - "tick": "396000083920" - }, - { - "tick": "396000094410" - }, - { - "tick": "396000104900" - }, - { - "tick": "396000115390" - }, - { - "tick": "396000125880" - }, - { - "tick": "396000136370" - }, - { - "tick": "396000146860" - }, - { - "tick": "396000157350" - }, - { - "tick": "396000167840" - }, - { - "tick": "396000178330" - }, - { - "tick": "396000188820" - }, - { - "tick": "396000199310" - }, - { - "tick": "396000209800" - }, - { - "tick": "396000220290" - }, - { - "tick": "396000230780" - }, - { - "tick": "396000241270" - }, - { - "tick": "396000251760" - }, - { - "tick": "396000262250" - }, - { - "tick": "396000272740" - }, - { - "tick": "396000283230" - }, - { - "tick": "396000293720" - }, - { - "tick": "396000304210" - }, - { - "tick": "396000314700" - }, - { - "tick": "396000325190" - }, - { - "tick": "396000335693" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000000", - "end_tick": "396000000327", - "dissection": [ - { - "tick": "396000000000" - }, - { - "tick": "396000000010" - }, - { - "tick": "396000000020" - }, - { - "tick": "396000000030" - }, - { - "tick": "396000000040" - }, - { - "tick": "396000000050" - }, - { - "tick": "396000000060" - }, - { - "tick": "396000000070" - }, - { - "tick": "396000000080" - }, - { - "tick": "396000000090" - }, - { - "tick": "396000000100" - }, - { - "tick": "396000000110" - }, - { - "tick": "396000000120" - }, - { - "tick": "396000000130" - }, - { - "tick": "396000000140" - }, - { - "tick": "396000000150" - }, - { - "tick": "396000000160" - }, - { - "tick": "396000000170" - }, - { - "tick": "396000000180" - }, - { - "tick": "396000000190" - }, - { - "tick": "396000000200" - }, - { - "tick": "396000000210" - }, - { - "tick": "396000000220" - }, - { - "tick": "396000000230" - }, - { - "tick": "396000000240" - }, - { - "tick": "396000000250" - }, - { - "tick": "396000000260" - }, - { - "tick": "396000000270" - }, - { - "tick": "396000000280" - }, - { - "tick": "396000000290" - }, - { - "tick": "396000000300" - }, - { - "tick": "396000000310" - }, - { - "tick": "396000000327" - } - ] -} - - -{ - "opponent": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", - "start_tick": "396000000008", - "end_tick": "396000000009", - "dissection": [ - { - "tick": "396000000008" - }, - { - "tick": "396000000009" - } - ] -} diff --git a/tezt/tests/expected/script_hash_regression.ml/Nairobi- Test script hash regression.out b/tezt/tests/expected/script_hash_regression.ml/Nairobi- Test script hash regression.out deleted file mode 100644 index e16fe16b92d1..000000000000 --- a/tezt/tests/expected/script_hash_regression.ml/Nairobi- Test script hash regression.out +++ /dev/null @@ -1,445 +0,0 @@ -exprvFK4dJmFGinHHBe92WR4kA7L8WSBQQYDigmyVCyKpiQHCXe9fk michelson_test_scripts/attic/accounts.tz -expruucsMyaSmmP5gmkFWjJfv4a52FQV5EGaf3XpHoeXHQgyJgMJfF michelson_test_scripts/attic/add1.tz -exprvEM4Lvihz6jFYszxazuQQPsHjxA4J54tfLeowwDkY1jjTi8Qft michelson_test_scripts/attic/add1_list.tz -exprta1x6QtexpFktejHoB1KwuMQRXePhgre9rDiJ3GDSZCqb3vtqL michelson_test_scripts/attic/after_strategy.tz -expruEosJCXYteRXxfbAVJ5XythgpVQPMdiu3kbbZj3VAVSVjk8ud7 michelson_test_scripts/attic/always.tz -exprvR9m6PaVeLfPHZjA3A929bbfjonzMJs1Kzcmj8baoEvLct9Ry9 michelson_test_scripts/attic/append.tz -exprvQh7vw7vYfp2qdiyYPCFgd6jVkxqYZimmqoYCGZbqaoMgfLifS michelson_test_scripts/attic/at_least.tz -exprtyZC9vL831BnATCkdrP585F4cEzQQQp1ZqnZSqvCDLqp7S33V1 michelson_test_scripts/attic/auction.tz -expruZ4wjBCm3DQNhEf69L27tqaqAJa1TF34728yyPJ9BUg3sEwcxB michelson_test_scripts/attic/bad_lockup.tz -expruazd13u4uPHS7oFWFeZ5nodWR5QC6nQwgy5LGoUTAR3KXsYPXg michelson_test_scripts/attic/big_map_union.tz -exprv7aEg823PTvrEG5bXr4QGk3XCsEkodhUxWCaMBBSq44ZuAxnNf michelson_test_scripts/attic/cadr_annotation.tz -expruwmej4r1RSMDEmmU4SjWUbrzpURnAwybrSwBaMkHpxVobLkWAe michelson_test_scripts/attic/concat.tz -exprte328K2NmgWrmHLbFrGVjvoZKZNFB7577Vt7cWQa8KdvWbfxYk michelson_test_scripts/attic/conditionals.tz -exprvRVXhJFcFjGMkatDwgaLRcJq4TctY979bjniTqwACgXtC3mWko michelson_test_scripts/attic/cons_twice.tz -exprtcnAL38pt7fyZdCiqd97qcYeESWQStPR6sbN2SxMCfbPJhVjau michelson_test_scripts/attic/cps_fact.tz -exprv9BquR6NXVwKMwD4MS5vdWqqvMzjvWumrBf6NsGQXSfgm2Rtqk michelson_test_scripts/attic/create_add1_lists.tz -exprv4cq5g9hsxWU65zCp8dfUi3RtBzu9rGXZ7otetL23tj1zSkNQ2 michelson_test_scripts/attic/data_publisher.tz -expruavAC89RfrZxSrYwdoA6Wr5ghwdUSns8SNaHcng1JRcqR1dwpR michelson_test_scripts/attic/dispatch.tz -expruat2BS4KCwn9kbopeX1ZwxtrtJbyFhpnpnG6A5KdCBCwHNsdod michelson_test_scripts/attic/empty.tz -exprubD7VQHa8qeqRsFByes3ANZ24mvUnqW3qKAsKVUCncjxYEXtGp michelson_test_scripts/attic/fail_amount.tz -expruYCfXuFoyakdWc3C6Np5ojQrGLDMMN6btVbVEAc97MJzpQYVrm michelson_test_scripts/attic/faucet.tz -expruuvYJkV5YndLNMHFg54yDF1HG6AP4zMsui7RgQBLr6vCZVBVYt michelson_test_scripts/attic/forward.tz -exprv8K6ceBpFH5SFjQm4BRYSLJCHQBFeQU6BFTdvQSRPaPkzdLyAL michelson_test_scripts/attic/id.tz -exprujqMuqia1zKuReMgjumpsn8XAJ5N6RWaoz3kZpLNRUyyQXwrtY michelson_test_scripts/attic/infinite_loop.tz -exprtoE9fvqNeHngkFPopZv412GoqoZ57HgaCi2XFR7YxkwPpvHXBZ michelson_test_scripts/attic/insertion_sort.tz -exprux8tMeArJNXUekbuHqLb6epu2eWXJy85f8Yts5oHASHyWp6bva michelson_test_scripts/attic/int_publisher.tz -expruosSkGQbRDc3NUt5oEqSkt3dqxymQDKDeNxcjRgFNLxARG414v michelson_test_scripts/attic/king_of_tez.tz -exprtZcF9NutGBwyuXTqEi4SyL3bZdAWqzkDc782wxNhYT7LtdY4Lb michelson_test_scripts/attic/list_of_transactions.tz -expruDiMLqyYi67RbkDfNyEjBDgJqQLiCGVx2xLUiWujSkwr7rVyRD michelson_test_scripts/attic/queue.tz -exprtZYeWyxANtdrSANECgXdeakcP9fJm7ecJhpeuGR55a8gDTSXWe michelson_test_scripts/attic/reduce_map.tz -exprvMneQMtBQzcPKboFsEV7R4BAuoF8QLUDMWB62iYLmKz9tztNdJ michelson_test_scripts/attic/reentrancy.tz -exprueaa65wkL9ennP6vZoUP6yCkzz6Wc4cF3w11q8bGXguokXAEvK michelson_test_scripts/attic/reservoir.tz -exprtwrNpVRUJaVTBs5vXFLbt4v6Fb8LRySwc1Ap8ZWZh4JbLfgJ6P michelson_test_scripts/attic/scrutable_reservoir.tz -expruwtkYFMkNLVjKD8hypuDc53SHLQQ65g6VPGiHFXbY5hHwmb552 michelson_test_scripts/attic/spawn_identities.tz -exprtjdvZr5J7WfN4SyNgKueLnxX4fALUYJ4cmi675EHJdUu5yyg2n michelson_test_scripts/entrypoints/big_map_entrypoints.tz -expruwheT76ehrMrKiyNw8pQEEUfQ1t184BMXGqhaMEuJUCKHNytMj michelson_test_scripts/entrypoints/delegatable_target.tz -exprv2AhXPjk56KeNgWmzN15v8f9SoLHMQhNmDAgt6SpAMFmYRCQjx michelson_test_scripts/entrypoints/manager.tz -exprv2SsGeZ6PiC2CXiSePHYQhn88XWmsKVGgG8ZGyNo8p9CNPrRXj michelson_test_scripts/entrypoints/no_default_target.tz -exprvFzfTFqHSFZuDHh91nrupqpULYorBNZRgLEEiPkUhkNVyskyTz michelson_test_scripts/entrypoints/no_entrypoint_target.tz -exprtw1GsUzdCfFR6bHsdF78uTbejEJ4iTdXn7YTYRU5C7XS89dyxU michelson_test_scripts/entrypoints/rooted_target.tz -exprtaqrrvZzcS8wKS8u6RcVqRJhnu2Qbex9jRUZHQxJJeqhhfhtXJ michelson_test_scripts/entrypoints/simple_entrypoints.tz -exprv8K6ceBpFH5SFjQm4BRYSLJCHQBFeQU6BFTdvQSRPaPkzdLyAL michelson_test_scripts/ill_typed/badly_indented.tz -expruN224mpoNLwPiVuGuaJ22QZjMuK6sKjGFAeSyQY8PQoBC7Hoim michelson_test_scripts/ill_typed/big_dip.tz -exprtnvncrJA5Fo5iyGnhyXhHXyWJuwvzWHP6Rbokbr7HsSqxQ7QLC michelson_test_scripts/ill_typed/big_drop.tz -expruBzaC26c6mckE8g8wLBH7t1JnFi8Uyn7WjdWKGT6sJftboCFTJ michelson_test_scripts/ill_typed/big_map_arity.tz -expruMk21qTMDDKvFNjTNLab33QEbdnG3kP7M1WEWcXhpPLkCAA21X michelson_test_scripts/ill_typed/chain_id_arity.tz -exprtrJKmsNVineQxEPp8Eq7FcC7edZHbJEdrn56WpqxW61QCpjacm michelson_test_scripts/ill_typed/comb0.tz -expruQsBtw9Fg9gmZSiCPUDD8FjqzDvQDTG5FSFbSJsr7j64DLbwjE michelson_test_scripts/ill_typed/comb1.tz -expruDceVcE3mACUGZhntGk2BMQNNn8UaFZhd8BnRfyWWzdFav7VyP michelson_test_scripts/ill_typed/contract_annotation_default.tz -exprv8no3WSXCsf89WYazUNurLm8hwZRwTWYBQrzihscQcR6M1uKEu michelson_test_scripts/ill_typed/create_contract_rootname.tz -exprtxuT8vf615qpJ9ycmVu7XUGBB8pZZjnPKnZhFhBMfdUpw2JarU michelson_test_scripts/ill_typed/dip_failwith.tz -expruUrLEKFhakNNzTRBigYqnGi2DkvS64m52omEYizdjmscmgF2AQ michelson_test_scripts/ill_typed/dup0.tz -expruUbLS1knNLEJMoE8c7oTbNo3EXiEgagPewKZLFUukFpQZJ7zce michelson_test_scripts/ill_typed/failwith_big_map.tz -expruk5YNGKzCkCMbLhr3euh9xQWZcmtZkGV891LMhNHbxpe1P5QTW michelson_test_scripts/ill_typed/invalid_self_entrypoint.tz -exprtX6MmAqAQ37LRgnkdv525PKHiGdGXyKT33M1NASahAMSCt43VS michelson_test_scripts/ill_typed/map_failwith.tz -expru9tAzQAm6c8Uv4oU6EpkJR6wWXZ8b7MUfyQMorpR8j3HKb2xQM michelson_test_scripts/ill_typed/missing_only_code_field.tz -expru1TjqXpC2u8BLGP5Ps6DPyXLvRY7arR187zjhTJsT3ovrbyqSm michelson_test_scripts/ill_typed/missing_only_parameter_field.tz -exprtnqtHEs13CBddyrcWuvRzsBqgk4vFqdaYTGp2UzY4Z8ahAW6Ej michelson_test_scripts/ill_typed/missing_only_storage_field.tz -expruyMAkvFzMm9ANKFgnpX5cfTVufBcrEn47wYGmnD1hocSbHJLxp michelson_test_scripts/ill_typed/missing_parameter_and_storage_fields.tz -expruRoBeRu3HBshceKrBikpiJWgz9pET8UC6QH7xvM33wPtxJ5cxL michelson_test_scripts/ill_typed/multiple_code_field.tz -exprvLL1MBfbBRMb3R4cy6bJ6KgoMuzNmL6u2y6NaT1hhbCmkprDi1 michelson_test_scripts/ill_typed/multiple_parameter_field.tz -exprudNsSikUJ8etsu55GFBJY33H2x9tzT7v2k1w5m5gLJBb8vU2B9 michelson_test_scripts/ill_typed/multiple_storage_and_code_fields.tz -expruLyv1V3fshbeb9HzsodyQFGDihmbt9wZD8UdP3NJEXzBvkaUL8 michelson_test_scripts/ill_typed/multiple_storage_field.tz -expruvbJCzBYasMCg3DcjmYK9FodRbLokBpWNxZpJDyyunsQK6gWCF michelson_test_scripts/ill_typed/never_literal.tz -exprvBkft3ii7B5gjvqFJKsEGq1z9VhnRHW5JAdPNGWPvMdkMRKjTA michelson_test_scripts/ill_typed/pack_big_map.tz -exprutSqwcaXa6tmF2D4asfxkb6QN5CDn128U4ntCgRG5JKUPan7i2 michelson_test_scripts/ill_typed/pack_operation.tz -expru6yXKqKsiikqZe4hgfbACNDFiGtSSoRsuEtcJy5iYwkwDCG9T4 michelson_test_scripts/ill_typed/pack_sapling_state.tz -exprvQzTcT6STxdp9CJi4mtrY9fvv6VvmfRjEqoQwUqYwEK85mjw5H michelson_test_scripts/ill_typed/push_big_map_with_id_with_parens.tz -exprvMz8TqvLs55NtZzBJ2quCwCB7FqxhVuAiMtEZGK8MWxQw6H9Xx michelson_test_scripts/ill_typed/push_big_map_with_id_without_parens.tz -expruW1dZrFKoyXWLXr3Yeqhmivj9qqqnDyWSc3NzyVHudEANGYjVW michelson_test_scripts/ill_typed/sapling_build_empty_state_with_int_parameter.tz -exprv7mqCULEgnAUKoU4foKVKZeuM6uMSkCCgoMeE1oGYMXGebu5L7 michelson_test_scripts/ill_typed/set_update_non_comparable.tz -expruVMMR2tyqqRqpVQzhLXF47658GNFQB2gLaemhrV8gRm9yZt1x4 michelson_test_scripts/ill_typed/stack_bottom_undig2able.tz -expruxH5WZ4TkhVCUq767J2fHG2yuqL13fWjcKK8azQmy2N9ud11RG michelson_test_scripts/ill_typed/stack_bottom_undigable.tz -expruVvGWPSfsZCtSGEm3qMmCgyveYXhVLQhhxpYBv7GTqaDL91kLf michelson_test_scripts/ill_typed/stack_bottom_undip2able.tz -exprtYhZdG4uP6y2pq4ewHDahRQP4fZ2iBMEYRgpq1hqMFQmMRZuWR michelson_test_scripts/ill_typed/stack_bottom_undipable.tz -exprttbYRZnFJLumEAvLpyH6R1A1GjcwuP39EZTqwNWYyceAAWFKoK michelson_test_scripts/ill_typed/stack_bottom_undropable.tz -expruRbdhi81mKdvamEnP2LoCNVVz6ewvyWhezKqZGxjrVFt7hpcq2 michelson_test_scripts/ill_typed/stack_bottom_undug2able.tz -exprtgLFbB3vNCxh9hHfH2rQdS2Vnqqucwqa2PGZScv6f64agKeay3 michelson_test_scripts/ill_typed/stack_bottom_undugable.tz -exprvQjZYDufKeuRxvKsMEPFMyuZYWYVUSe2GZJw8eXRXYSD73buTB michelson_test_scripts/ill_typed/stack_bottom_undup2able.tz -exprtz1gy2jW3mpiJxgquMA68mjWh8s61HDQJzVp5hhUQnVsP9xR5L michelson_test_scripts/ill_typed/stack_bottom_unfailwithable.tz -exprvDK14kRaERXV4ygtEJTgd5UQikyupAMdTWbZFTULAFPzARqAdQ michelson_test_scripts/ill_typed/stack_bottom_ungetable.tz -exprtydB8VD3snEKSXYgV2SphRE8bZvPJd3o1QEU6GPqZm8cHc1iTR michelson_test_scripts/ill_typed/stack_bottom_unleftable.tz -expruKgcBzkj11KzkbRKYAsWrngu4rBuqNmhPdGWudV4KeePSJGoEk michelson_test_scripts/ill_typed/stack_bottom_unpairable.tz -expruFLiTmNwLXuXVaPGquovMCYjgCeJzKKV27DK14NQAG7z4nGxvQ michelson_test_scripts/ill_typed/stack_bottom_unpopable.tz -expruQAEgAnhPLZuaywyGgJGqcRFWn2rEDprqNHvRDxirdShLwc26c michelson_test_scripts/ill_typed/stack_bottom_unpopable_in_lambda.tz -expruGDfhqvw6oH6cA6Vvvjdn8FyEmJ7SUizhNFCYNSfG2ikmBr5ea michelson_test_scripts/ill_typed/stack_bottom_unrightable.tz -exprunAg8DteXhBhjmmEPasSRe5u18oN5UdwJUyz7crzktR1n7aj7g michelson_test_scripts/ill_typed/ticket_apply.tz -exprtv5Yt3ihwrqvfZm2CZdHkJk544CdepaQ5g6jTF5UhfvK3y1PAc michelson_test_scripts/ill_typed/ticket_dup.tz -expruQfVM57mGxNiY7XpV3Rex8xhqLwRyXvvSEBEZuHKvoVgo8sfsU michelson_test_scripts/ill_typed/ticket_in_ticket.tz -exprtw4id4R45wkzJz7g5GBiRStuREcD515mjMvECP2Nsjt1GCDQSb michelson_test_scripts/ill_typed/ticket_unpack.tz -exprtsPNzBdoHNqsiGGzD83vzY4QhRGFgj2aBhVkRjryg8UCzgB7rm michelson_test_scripts/ill_typed/timelock.tz -expruWHcaUVqG6kmYxQF1Mxx5hmB2SYUeNVWNkVrprgax67e9sLATa michelson_test_scripts/ill_typed/uncomb0.tz -exprtrL9J2534bFgoBvVC1YaNVXDsE1c2FXWxgyDhDHtUz5zghortN michelson_test_scripts/ill_typed/uncomb1.tz -exprujrucGLAmdmT3k2iRC2imquB7sUbcvSg6zVrvAxcvbrrkodSRb michelson_test_scripts/ill_typed/unpack_sapling_state.tz -expru2vU5zmzGh2HRrwNeSnysgcVLMbPb1tkGoFTrNg6YiNMqm2dxD michelson_test_scripts/ill_typed/view_op_bad_name_invalid_char_set.tz -exprufbbZ4jHZ6PJJT614zAJU4ZdSEEmjTpxM9YMnEMSLLR85tKe97 michelson_test_scripts/ill_typed/view_op_bad_name_invalid_type.tz -exprtZFiFcS8quUpTKd6cdop8WKZ9km6X18pF8gWngrTarAiVWWuxv michelson_test_scripts/ill_typed/view_op_bad_name_non_printable_char.tz -exprtn9rV6YNYRDCKtShnzAeKaYh8jqTNKjGxVYo1twk7hrAhPaLrT michelson_test_scripts/ill_typed/view_op_bad_name_too_long.tz -expruBC7TwAKWgKbY8dpuDR7cuvxjFM6nCd935jCcWq9rSJNw1aA75 michelson_test_scripts/ill_typed/view_op_bad_return_type.tz -expruoFRmDZuVddy7VmkV2QBcLgSStqpEDMDacTWsFzqTxZXdWdZfC michelson_test_scripts/ill_typed/view_op_dupable_type.tz -expruxYAxsENuXbe9kyhfUaWWAjBfWkbuQy8irkyJkevrfLBsWt7xc michelson_test_scripts/ill_typed/view_op_invalid_arity.tz -exprvPFLSH8Yzs7khoVZkEz4sYWbh6b8ekM6iHrGY5Ds1BjUm763QM michelson_test_scripts/ill_typed/view_op_lazy_storage.tz -exprvPFLSH8Yzs7khoVZkEz4sYWbh6b8ekM6iHrGY5Ds1BjUm763QM michelson_test_scripts/ill_typed/view_op_lazy_storage_type.tz -expruUdCLKAbj9Ww3JkAZ4W2UuTiJ7ugE7kg9DVe4AUfXKE8Q1iPVQ michelson_test_scripts/ill_typed/view_toplevel_bad_input_type.tz -expruWvd91ycMrLFH8jF534BhTWjnHxaHrEubeRNeodafNWfjqqBXC michelson_test_scripts/ill_typed/view_toplevel_bad_name_invalid_char_set.tz -expruethdzDpBvRtq9UQPdXGwRZqkWnqs6CrcNagNVhDU9vCwsMdzA michelson_test_scripts/ill_typed/view_toplevel_bad_name_invalid_type.tz -exprtnn8xxH2nr6UErb9DNv9Z9xngpSzpYnNk6hwBTbye4x5uacMeQ michelson_test_scripts/ill_typed/view_toplevel_bad_name_non_printable_char.tz -exprunFKRQPF9Hobtkqx32WyQ6ikygyLkL7DCBMNuMoG95NqzVF6si michelson_test_scripts/ill_typed/view_toplevel_bad_name_too_long.tz -exprvMAXDRZuAVGhFHJwnWVoZ411MwmQ9EdVh2JuRnw5qcdz6MjQC1 michelson_test_scripts/ill_typed/view_toplevel_bad_return_type.tz -exprv56pnBNv6EsEHTHjWhJ3tdv5qptVpQGw4ShYC4ojPMxk7Nkxok michelson_test_scripts/ill_typed/view_toplevel_bad_type.tz -exprvAA9gioYUserBNWfg3dM3tpUkeJpEvQBhdCYo6Zkbj8cDciEHE michelson_test_scripts/ill_typed/view_toplevel_dupable_type_input.tz -expru63YpYAZBw9UnRy2pmB9uMQRH4EJXF1BcRAV5xeq3tBdtKtt1F michelson_test_scripts/ill_typed/view_toplevel_dupable_type_output.tz -expruhHAADYeL1YyPJJ6JJDVG1uZMtUChzTRY7wUqjqDJv42WF9iuM michelson_test_scripts/ill_typed/view_toplevel_duplicated_name.tz -exprugDV6TiQP1tmA2JMGXiuF29EKmqacQeF3q7rWkfwzVrw5Qgksd michelson_test_scripts/ill_typed/view_toplevel_invalid_arity.tz -exprum4MVnmugWSpeJysnzAkDFshNeuWboGS3qsgCi3eo9GCxGWZC1 michelson_test_scripts/ill_typed/view_toplevel_lazy_storage_input.tz -expruT8foeFBSvHXuiN9UvAxj6d3ZhidwFteyE4pNHNe3zxcC1LKNv michelson_test_scripts/ill_typed/view_toplevel_lazy_storage_output.tz -exprtf4cGFGDne118G4RFZkHFXFdZMNgAtm1h3zXohFS4n6mzEe4Bp michelson_test_scripts/legacy/create_account.tz -exprtcuNLyAhcZ7Zt6K8pH3KzVyU9YELeSXkJsMPG1h3FyKebyzBz9 michelson_test_scripts/legacy/create_contract.tz -exprutTcX1BwgaPug446zmc16pnipd59ytpVmA6JxAAEyUwJbD47Qv michelson_test_scripts/legacy/create_contract_flags.tz -expruypHz1N6PhereVyiB349tQbrYJhBDr6pJBck1BAUudKRMvMH77 michelson_test_scripts/legacy/create_contract_rootname.tz -exprvPF2hwUEU3GeucamVx6wnv9VWH39QsJVtQW3uUWwXc4aQWJVEw michelson_test_scripts/legacy/originator.tz -expruyPygjWK6gmUgsRZgv7Df2rnqpQUMj65ApbCqmHXNbS2o6QAMk michelson_test_scripts/legacy/steps_to_quota.tz -expruiDvGyQG5GzKzcBP7d5Z5doUcdxTmUcM6vL1jCTyTmxLrekmP7 michelson_test_scripts/macros/assert.tz -expruMKaaLoPjYfDaKymizi9fnFY7hSDyPj2NfJFxSuAoEVknDxSM6 michelson_test_scripts/macros/assert_cmpeq.tz -exprtqiRJEnWeqF5KKBRPjamJGoi2oQvekfnRwsdZNRy8w8wkbroKJ michelson_test_scripts/macros/assert_cmpge.tz -exprtZWviL38eegiNAN55KfEtAHhAqUWoadkbxyFCGs3vDnDRzueft michelson_test_scripts/macros/assert_cmpgt.tz -exprvBWTmSLBAGgcuBFSToCQPqH5J1F5R2vf8iJMiPVdZjG3B7hWq7 michelson_test_scripts/macros/assert_cmple.tz -expruuDzygKxAaQ348e6BcRSk8A2Chq4WinaTUCTvg5YEVnGpptBg3 michelson_test_scripts/macros/assert_cmplt.tz -expruxeuWRoEFHhzv7tG1rwderXePZzxtpL9BRQ9N7ZhoFXS6RPy9a michelson_test_scripts/macros/assert_cmpneq.tz -expruaqEBPqAjaUawnFTSbGZXXr1HemnecV8GuLGD15nQvtxaXiH3z michelson_test_scripts/macros/assert_eq.tz -expru9etUCKvNXZyDCx1x55QfZzyGxmgsteFNBoWAZeh6F5FHEHy3m michelson_test_scripts/macros/assert_ge.tz -exprvP9aPgepXY1C4hVPWPMoDGhvSjNvH5sJvB25qcMMPFHurVyH9c michelson_test_scripts/macros/assert_gt.tz -exprtbLVpjXVnhdMUyDM53MXHH2HBNSMxdnXsVTNtFFMHHVn18yUuZ michelson_test_scripts/macros/assert_le.tz -exprtx7nibNobG8Y7asBYktu2NdPv3k3No29rM4nP1WSbricymunvc michelson_test_scripts/macros/assert_lt.tz -exprvQM6Ukz3TKVSo4dqNDYmMvNG5rs3U7WGXpvjSVsM2oQj6SbdLM michelson_test_scripts/macros/assert_neq.tz -exprueGaPWpG6szfmTAccNH5MaoqxovN7JCbx4CDsmpvnhBAUrAizc michelson_test_scripts/macros/big_map_get_add.tz -exprvFc9HFkvwNGZVrJkU2KpXuXieVKCJ9VXbTo51LRWBMAB6oEbWq michelson_test_scripts/macros/big_map_mem.tz -exprv7Gwz5KP32zP9FYPSng9mPqLYbxwttDZin5QPnqzsUM3MZBvLK michelson_test_scripts/macros/build_list.tz -exprvNqdnnqWgrrZYgnkuFeXrboqQYnYiRLSb7wV4E27bdZcbrU5GK michelson_test_scripts/macros/carn_and_cdrn.tz -exprtknptGzyx8quFM8gHyGcpyX5xYeUxUpoVPhZeBkRqz5hUHfuq7 michelson_test_scripts/macros/compare.tz -exprussGZ9wiqKqGkCsFJrfvr5DXxqZiLuHATJuvr3D8ar3KCeNaCz michelson_test_scripts/macros/compare_bytes.tz -expru4Mmhu46yLQj4Q767jgVgvbaNe7B6EwvYvWA9KCrfzCxwBnzCQ michelson_test_scripts/macros/fail.tz -exprtyJ1YYdejX7jRUh8FDjbbwrbAFwZYKPjdEZMNUUWdncqEwvuyr michelson_test_scripts/macros/guestbook.tz -exprvMCL9Ti9C12EZUiFR1YtSp7nYjPN4DoyJPQiyVDYCZsSsheTeV michelson_test_scripts/macros/macro_annotations.tz -expruq2AH96hXvqFqphuMKhJUY8mGMmdHuiHWHjkZqooZoEusTNNRf michelson_test_scripts/macros/map_caddaadr.tz -exprueEkWTdWS8F25vnUP8gWd75MCfxk3vMhETn5dUYtrifV6FU8x5 michelson_test_scripts/macros/max_in_list.tz -expruGfNErSHzpWnoNpgvZ3MRc52jiCHu8YTDUvh2T643QABr7NDZN michelson_test_scripts/macros/min.tz -exprtw4kigYCiREgky6KBKryS7JkaGih6ju8jkjaXtpdcWYrYukRKX michelson_test_scripts/macros/pair_macro.tz -exprtxutG1Nu8d198ebiCraNuQ8a6iYYqJYfGXq19aykNPB1uECc8w michelson_test_scripts/macros/set_caddaadr.tz -exprvCE6JDXrzEfZuxTQzSgxWXtxX5GoNxvidL84CN2TAm6Hk3kuK6 michelson_test_scripts/macros/take_my_money.tz -exprunGqZLZZwm9mY31NFGbBemCgXGevYqLRKdeRKQArPf824Npnni michelson_test_scripts/macros/unpair_macro.tz -expru6Roa34xofgoK2pnwz1gUNUiPX8qugbPeXn9Lyh8kD3zJNYvim michelson_test_scripts/mini_scenarios/999_constant.tz -expruwYQvEdTgNzbm3228Xp6srt9FbG2v7w2F8yVH7BCK1P2NJTJUi michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz -expruz2R676Zvnc8cnu3nF28w8mc2gwGbCdNDmyLc2BfpsgaVQHteF michelson_test_scripts/mini_scenarios/always_fails.tz -exprufRUAYF6r5QHQvK8CzWkKQcdvYkPx5fjEYzWPXc35Dry77KDT1 michelson_test_scripts/mini_scenarios/authentication.tz -exprtqebvyM9AjhRMT2WRMo1yiuScCwMf4VLjBdhJFig1ERW7knouj michelson_test_scripts/mini_scenarios/big_map_all.tz -exprtjdvZr5J7WfN4SyNgKueLnxX4fALUYJ4cmi675EHJdUu5yyg2n michelson_test_scripts/mini_scenarios/big_map_entrypoints.tz -exprtfWRfK4RoY8CF9VXvcHeBxizfjMMPAkLojfUTuoZkMSyiPKoyK michelson_test_scripts/mini_scenarios/big_map_magic.tz -expruRE8G1Qc1dU8ZeQCTA48D69uPv8hpZYtDiKKHbfiy1mQLno8nx michelson_test_scripts/mini_scenarios/big_map_read.tz -exprtotUpA2o34SHPX7ZQHD69WvJyEykTvPJ8T3RFErKAq4TQHFAgP michelson_test_scripts/mini_scenarios/big_map_store.tz -exprtbeKR4fc2tqCWahuCeXAb42Hpye5dwmq8sj2guSztorTFJnh1J michelson_test_scripts/mini_scenarios/big_map_write.tz -exprvMZ59ZHwL8JHywsDMt51uUNCJub3nrhgciCyCh57FgZRVAHUCk michelson_test_scripts/mini_scenarios/cache_consistency.tz -exprtywgtRD1K7PCc7Bgvo3BhdbnStcdQd5JVk8r1BKBsH6ULXcwN1 michelson_test_scripts/mini_scenarios/check_signature.tz -expruQ3eniBy4BdEnCBNeTB9qQApVnBNnfqpnVw9iWgSBAHpBqaFqV michelson_test_scripts/mini_scenarios/constant_entrypoints.tz -expruaYHJwQ2NNRV8iUu9iXZ4AhE4conKnkwkaEYtX8BhngWkgLuqW michelson_test_scripts/mini_scenarios/constant_unit.tz -exprvTRcwMZnUPdSeRG8DdiC2xH3DrfMbp8qCwg76Av4pqbX5k4tHw michelson_test_scripts/mini_scenarios/create_contract.tz -exprubRYeqf14u8CU4cEri2RWBrx26gkxyGe5wGeVAf4PDjKdsNhLK michelson_test_scripts/mini_scenarios/create_contract_simple.tz -exprvLDpqaNLp1Cb8hbCqRU6tyU53n9PQkixgcBwFdSLJWsUdwhCQU michelson_test_scripts/mini_scenarios/default_account.tz -exprunMD4kfFx3QbgjyS3VHm6Sy63Km4P4XZiJz3PtZkaZNe2zcmd9 michelson_test_scripts/mini_scenarios/emit_events.tz -expruaNoYRNTQxG5yujhHLetzS68ppQ38MFyi2ZhzNs5WNFv3wBAHG michelson_test_scripts/mini_scenarios/execution_order_appender.tz -exprv6GXw7FheWdWKfY5oxtkB1AcqWkpKQDq4w7rxYFvwypZQijymK michelson_test_scripts/mini_scenarios/execution_order_caller.tz -exprvSqfUw3oLZmQDwys8V5Qn9K1RAgMDGxdUUxzx1wpnyif3uSZG8 michelson_test_scripts/mini_scenarios/execution_order_storer.tz -expruhMQvp6kKepaVGL8EEMPPk6zY1uyyW22Ugrr4ty21dtjDcVdbq michelson_test_scripts/mini_scenarios/fa12_reference.tz -exprutp2rbqbAjUxgneVRzRxv7ppTEvKdA6tNAeDDnGN1zsftskUQQ michelson_test_scripts/mini_scenarios/fail_on_false.tz -exprub9UzpxmhedNQnsv1J1DazWGJnj1dLhtG1fxkUoWSdFLBGLqJ4 michelson_test_scripts/mini_scenarios/generic_multisig.tz -exprvTVuhJ2wNH8LHYEUiNC6ugx264rdfka1HkGfdVxV5632GjqgNv michelson_test_scripts/mini_scenarios/groth16.tz -expru1u3Ta2uCGgcz6Z86K2mA5ierGB9RMaSwSppzVFxeuiXpBFZrf michelson_test_scripts/mini_scenarios/hardlimit.tz -expruYCY8RiqSCiWarxVgha3fCWqbZTzMVtf4cFSrvB7J6kxZW3DAH michelson_test_scripts/mini_scenarios/large_error.tz -expru362itxUvgRTAaaRaZiRsB2jMV7sv4WzcGPQtzp7z44rp7AdZe michelson_test_scripts/mini_scenarios/large_flat_contract.tz -expru23Uo5EJQEDVWx2JViKwosQ2Ri9ysY9CkftfB8X5D9qh3KRRPJ michelson_test_scripts/mini_scenarios/large_str_id.tz -exprutz4BVGJ3Qms6qjmqvUF8sEk27H1cfqhRT17qpTdhEs5hEjbWm michelson_test_scripts/mini_scenarios/legacy_multisig.tz -exprvRy1WUs7SQaNJm478UQHzz8uJAQoWT3bR5TXSnmbxWAcpZdGKu michelson_test_scripts/mini_scenarios/lockup.tz -exprtaZK3uo7KJ5WK96o6vR9atAPqFGnq6ew23Jwve6VFYy3kAmiDQ michelson_test_scripts/mini_scenarios/loop.tz -exprufAK15C2FCbxGLCEVXFe26p3eQdYuwZRk1morJUwy9NBUmEZVB michelson_test_scripts/mini_scenarios/lqt_fa12.mligo.tz -expruBi6wgss7SRmpBCseBzcu3L283Jfx2CpUjgfuT2MgsozUsvBwt michelson_test_scripts/mini_scenarios/multiple_en2.tz -exprtgxcdQP1EVvEYN2BHjbqTvwzywuYAdCmnfVgeP9zcgkxUrmScN michelson_test_scripts/mini_scenarios/multiple_entrypoints_counter.tz -exprtw9v7A9CwKaNKQFVYuwtYbSkcnMWHeV2T4bMY71P31pgrf7v7M michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint.tz -exprusoefPk2e7L24cikJeYJPb6EfMKwcmHXWRYmUDZ38s9FRjyQUt michelson_test_scripts/mini_scenarios/multisig_dest_entrypoint_arg.tz -exprtqmA1RUirUeuGYz9aUFyg161DjfMXPjxtrA6Jrq2dTs59j3Ft4 michelson_test_scripts/mini_scenarios/nat_id.tz -exprui72n1Jur5Px5ESXgxiF9Uw86DsoXPt1edGDpSv4CvnuPCtBPR michelson_test_scripts/mini_scenarios/noop_bytes.tz -exprtzYM9ERr612k6ZBwGFJYHYcFbrG44y3KsanKg6Rz5VtEV7vUZK michelson_test_scripts/mini_scenarios/originate_contract.tz -exprucgYdABPRbbq2yy2rpyt4Z8fv7PN4yhkch3QYZ5QQ5ehbtNA4K michelson_test_scripts/mini_scenarios/parameterized_multisig.tz -exprvEkEGDttTD4uzRXGtJ9Usq98M9Y27B8wjrSD4YkhsZ17kgEtyu michelson_test_scripts/mini_scenarios/parsable_contract.tz -expruyXnWo3aJfqo9Z6ycLDjyJygYCeH5JUrchAfFHZcvU1ebtDBXx michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz -exprvJ8zXaBkyXMhJ2eKtPwdwbg5NLrggvW8MEpVK3hk3nAe215PQ6 michelson_test_scripts/mini_scenarios/replay.tz -exprtuiYUMjM6d8XxPda1yfKeN61ko6riom35PzybC31NKXkVhgBQy michelson_test_scripts/mini_scenarios/reveal_signed_preimage.tz -exprvHREG4G45HEucJxKDgc97zKvtHSHH19EJNGJdTvTjPD4xVW64f michelson_test_scripts/mini_scenarios/sc_rollup_forward.tz -exprtjCFzmoU7Z5DAfA2NX69CdWG68wmgLUKgsNY4THyjBU4kofTF8 michelson_test_scripts/mini_scenarios/sc_rollup_mint_and_forward.tz -expruB4maBvk1y4JaeSLpDXWC3zKiXK5QFYv4B3R5KfdGEt4B5VvTT michelson_test_scripts/mini_scenarios/self_address_receiver.tz -exprvTG7hjtWXeogStj3pzM1MCVcNg1q6KnivqNVzQjviUrJvsjfQn michelson_test_scripts/mini_scenarios/self_address_sender.tz -exprtahxrrP8ovDPykXLtbNsHGKTA8BwAvcwKCZR9LZtomdEfMaRDP michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz -expruPp2RQZWq4HoEZ8UzSeMc2C8WDFpd5KzwgvPYNubSjbGui7bHX michelson_test_scripts/mini_scenarios/send_ticket_list_multiple_016.tz -exprvLTHbFX1yKGLikbkxpUuXzu3zoKTh3Hveg1uFg9YBauQWWY8Ts michelson_test_scripts/mini_scenarios/send_tickets_from_storage_016.tz -expru6tUaVWpaR7D5invwY7inJnPZGPXTcDqFvirrHPMRxSeHki5Fz michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz -expruZQmVUQpyeX1RJbTjGswm4L3xjH93Pbo1bwAgH3yqMCfPeb9BG michelson_test_scripts/mini_scenarios/smart_rollup_mint_and_deposit_ticket_016.tz -expruSijXeDKWECoCNHi9UBxX4HJ2UwdoRVKKeryux64D6hajHw555 michelson_test_scripts/mini_scenarios/smart_rollup_receive_tickets_016.tz -exprtZPsTsBtNf9hjv7Yfda2EV4Sz3iaHpk4NkYHcKteXbsyQ9d6pH michelson_test_scripts/mini_scenarios/str_id.tz -expruaFvFLsin2MWRuDkLRfe56pdPTUQ8RK9k1ks1rUTjBnwryPyPx michelson_test_scripts/mini_scenarios/ticket_builder_fungible.tz -expruMFhigCZpXrGaL5sMyjGw5k7CanAa7XRkHFemCoCwMfJFJjDuD michelson_test_scripts/mini_scenarios/ticket_builder_non_fungible.tz -exprthFU1n1xhXLi4D2G4andPJsLcem1g1UtKiKJjXkCfVHztC393b michelson_test_scripts/mini_scenarios/ticket_wallet_fungible.tz -expruoGtEJH3sXXm2ruNG6DGTFE3GM6fjAS6fzDZKtdaMnRzHvi3Xd michelson_test_scripts/mini_scenarios/ticket_wallet_non_fungible.tz -exprufmCT3yVRjmsPS9f8eX3ZAbbUhdmUccDMWgdtSNA1QRx1i1U2s michelson_test_scripts/mini_scenarios/tickets_015.tz -expruzkvr4K2JgDWJqjwT9B1epNG1aDDjmvh6UN2kmecs3d6yHPPAN michelson_test_scripts/mini_scenarios/tickets_bag_016.tz -exprteapARTC3TcgQgBLVei9HoTq28M5xLbaEjmBaiUt46ipgP2TEq michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz -exprthATKGK2oc4oVbEDM4TYgJ9wHRsgbP4QwdpgwaNbjvswCeP3iT michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz -expru3BvEZn3LQEeUGjADWtNsRomSDi7LumwBDZEPnqo7j6iTnC5G1 michelson_test_scripts/mini_scenarios/tickets_create_and_send_015.tz -exprutzAruVCL3YX7JEwZf6bJ9Tq4bj19vWR9S3wofjNFXga1LzQSd michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz -exprvRyB18cUg5GmD5fzdkozmBMJyRm6my9hCFMMXQA4UgEGF6rdcH michelson_test_scripts/mini_scenarios/tickets_mint_and_store_complex_param.tz -expruhv4oofRVia4jt9hoTcYyohmNPiFqHTGTAyquyWu6R24eRdbEu michelson_test_scripts/mini_scenarios/tickets_receive_and_store.tz -exprtfF4hinrA2UJXB12eDnXV2ZjGAXX5ADneq5ezkuVi3PJvVFwnN michelson_test_scripts/mini_scenarios/tickets_send_016.tz -expruTjbiyNePk21v9BsharZPaT7xLkTzwTU5aSeHya4pXqn2DTBz5 michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz -exprvRXkn5p6qw3T7mjBud9XCDsgDGmyZZzMRscNAkaG6F1CitPYgz michelson_test_scripts/mini_scenarios/tickets_store_fst_and_rely_snd.tz -exprtnBz8poqNTrK4rzTXZFKQx7HWpx4WidHB5wxcM2oTS8NcrkAUt michelson_test_scripts/mini_scenarios/tzip4_view.tz -exprvG3gj2DnewiiqoLMpo9g5bHLtbk9NgqinPgGezHnpfK8jqGsm3 michelson_test_scripts/mini_scenarios/very_small.tz -expruws94oEpYqUjzea9obsa9j5tF4wtccbAPnRaLHRkL7G2gWa6Y1 michelson_test_scripts/mini_scenarios/view_check_caller.tz -expruFec7jRXa5z5sdoYyr6RUK4Uw8xwgXHYQhDF39mciEdoyVgcX2 michelson_test_scripts/mini_scenarios/view_registers_callers.tz -expruBgdNVqgPu4YL7fzivE9BYu7vQvbuoe8V9XwqVbWj7p6M5egCj michelson_test_scripts/mini_scenarios/viewable.tz -exprugya6ngixBfjyxV28ffnC8jmJPi4vbJdqD1aVUx82YLhzbH8Tn michelson_test_scripts/mini_scenarios/vote_for_delegate.tz -expruaKedvXmhg6wbV361DHykomz5dPqLi473KxBwJwyicEnKMhpb9 michelson_test_scripts/mini_scenarios/weather_insurance.tz -exprv9PvyjnsPjPCg5f13WtBiuD3o6idDAVWU6QfPtdWMjCLGRpwTh michelson_test_scripts/mini_scenarios/xcat.tz -exprvKm5t6a6LL2d3HjvRiJumGrGei24aRXscJk3zB1hs516Ju4oMZ michelson_test_scripts/mini_scenarios/xcat_dapp.tz -exprucvy7NUDPu2yTWEA6WVsusEZgGRmU1WpVzrFnNZV7m2H8BVysF michelson_test_scripts/non_regression/262_bug.tz -exprumT8doqCpoTqPAuJa8dsnrC7giaz6aGnMkJDF9kg8j8mBEafAC michelson_test_scripts/non_regression/843_bug.tz -exprtyJrKmrcvMroXNvbNSJr4hrWcLqa6QHmKSSJLMNqe1nueq1MSt michelson_test_scripts/non_regression/bad_annot_contract.tz -exprv3FvpUYzomvhmzxsQyuR1katpswNnicQZB4jA5uec3MERXk1cB michelson_test_scripts/non_regression/pairk_annot.tz -exprujPzkrPVucSvhHc1d9xm6kcs7oggkQyJXN8L2Rj3fteEABAkTe michelson_test_scripts/opcodes/abs.tz -expruNtqq51Lm75X61pxUx7P2FyR2uyUKLsZNHMXWx6X5rsyJ5M6WX michelson_test_scripts/opcodes/add.tz -exprupWD554EpqFBjo4KUpTqrfQcJAHqr3ijKmv5cmLRJ93Q1SgwGX michelson_test_scripts/opcodes/add_bls12_381_fr.tz -exprugu3H5MPrpWJRZMPMGDM3Dbvykaa1fHejEvYr7ePKaLtahjQV5 michelson_test_scripts/opcodes/add_bls12_381_g1.tz -expru41eYPF7gPvBRAtantBxbFU75RqBEwHPZ7UeX2EgHmExRoA4dh michelson_test_scripts/opcodes/add_bls12_381_g2.tz -exprtcPYR7TZHxzcpmZWjjLgMWp6CeRWAxQ5Bt2bgpUK5uKjmNAdzL michelson_test_scripts/opcodes/add_delta_timestamp.tz -expruLFQ1mcR5sg9sqyFHThknANoBeL4C5HFGgH55MqwPBEb1TUxLt michelson_test_scripts/opcodes/add_timestamp_delta.tz -exprtz1uUW5sVUVaKNLhPaKGjA7jK9JmzWBCQu5Xn1MC3aS1FjTUmK michelson_test_scripts/opcodes/address.tz -expruskF2nSeJeBaVHZsp45yN7mer9a4f8fAUBYvU3oRzbmpm5cVmt michelson_test_scripts/opcodes/amount_after_fib_view.tz -exprucSgNGh1wkijmUcjLdifceE7GeMdLnxL3JZKpbxAmzF41ALo91 michelson_test_scripts/opcodes/amount_after_nonexistent_view.tz -expruUQ1z6YqZM1baKofNLYhK9nocp9puAXCo4MYzEkQPbQcXTnajq michelson_test_scripts/opcodes/amount_after_view.tz -exprvJ4NRS33cboLuTx58f3sbYpXf1m7Cq2ou9gpCh1k8foaCZAoas michelson_test_scripts/opcodes/and.tz -expru5BXwmdpWQ3WDKA24g6gYGwLxPc868wKkdeAaGh899nD77Uxwn michelson_test_scripts/opcodes/and_binary.tz -expruthG9mteYkv8qKgRq13VjZTvbjtJYt1HmQg8HktkvjCvKZgdhR michelson_test_scripts/opcodes/and_bytes_016.tz -expruL6aKRTXN2hWb9EXLuJASu7nuBGJxL7VyT1oEjX9b2s3u6Y5Ff michelson_test_scripts/opcodes/and_logical_1.tz -exprtpYYuLewZWKCK1aPb9gfYSiPWSaeXRM4P2e4rpa6UktVueB1uf michelson_test_scripts/opcodes/balance.tz -expruWVQymVzetzkRaBYh4thmdWCvzWZNqdGrCTinGxLn58rPXDkgC michelson_test_scripts/opcodes/balance_after_fib_view.tz -exprukgm7LHJiEywzSseHXp23nXM5Y9GfJ61ULij58BgRQ4nt3bYYT michelson_test_scripts/opcodes/balance_after_nonexistent_view.tz -expruggCnM7PeEcUr2BapBmFMhD1QGvEoM4dUfyxp2u64ic1fM9SYN michelson_test_scripts/opcodes/balance_after_view.tz -exprtZRAy4QHqpF8c3CusD6e1kxWA3KAUrmgeXndfQYSEGArDmkWUm michelson_test_scripts/opcodes/big_map_mem_nat.tz -exprugsT35M51mCw6Fim3ysNKpCh8JyW9m7CYW65QQ7XUEDmspqz2i michelson_test_scripts/opcodes/big_map_mem_string.tz -exprvN3tk4o5YPYJB6aYAxEx8KU93yNSaw4K6mbEZZh9RQayua6odv michelson_test_scripts/opcodes/big_map_to_self.tz -exprv712JoEC7RRhoP7gbTUiVgLbtAgHmenwa5TqhVykDZ3e538MGU michelson_test_scripts/opcodes/bls12_381_fr_push_bytes_not_padded.tz -exprufF1yaR5QHdy8iECBLjhBtDZVLiEjZRuJntSkXjsrJRYozXLmW michelson_test_scripts/opcodes/bls12_381_fr_push_nat.tz -expruSVRATSSsbfHowLHGs5XHms95RuqBWSdDJoUKdns3fWbwasU1p michelson_test_scripts/opcodes/bls12_381_fr_to_int.tz -exprvTBYxSJ7d1z1aZvvAgPrdZUXHzoFxkwBC7McES5BS56xvqkGXg michelson_test_scripts/opcodes/bls12_381_fr_to_mutez.tz -expruTppbXBm1YHSCB4uYv9MQs6zxqRWqbkwGWoiKfF5Sjj5n2TpJx michelson_test_scripts/opcodes/bls12_381_fr_z_int.tz -exprv5Si29PfXErNuJdEvJWQhWRJ3qPETygaWzRE3ctmCU4s6y2V9v michelson_test_scripts/opcodes/bls12_381_fr_z_nat.tz -expruRsYz6JopAFGU95WfFU61SE3RbMGn3XPR9PFiTfLbgQr2kzu7u michelson_test_scripts/opcodes/bls12_381_z_fr_int.tz -expruyE3E3o8EAptRBZtQAB5Kv3sxUZGv7DK6CpJ2YdotQj9gqW5wN michelson_test_scripts/opcodes/bls12_381_z_fr_nat.tz -exprui72n1Jur5Px5ESXgxiF9Uw86DsoXPt1edGDpSv4CvnuPCtBPR michelson_test_scripts/opcodes/bytes.tz -expruxed4mBnPkdz81bZmzgQ6wFEEdKZqFazTkD9cTGWAuHAB2HTfA michelson_test_scripts/opcodes/bytes_of_int_016.tz -exprue485QnZ1W1ctgYRzPCy3pAcQmUAkAGGp6StowguHVCqMCVo7E michelson_test_scripts/opcodes/bytes_of_nat_016.tz -exprtvRRYmpToi9y67ZzNmgjtdrgNkwVduSnBi7GZVrsmgDna8TSjB michelson_test_scripts/opcodes/car.tz -expru5dDnxp1rhgXGmKigbLJ9ASaVHbkpkL6gLggtk9krgYC3jusc8 michelson_test_scripts/opcodes/cdr.tz -expruxH6gEuBmNzg5nWEM4tv3jMBbknbEtTHKTPMeC4EBdFdujbRph michelson_test_scripts/opcodes/chain_id.tz -expruGhHABGLz2wxAyyx3RpfyKHa8HE9voC19vLiAKYWYMMsUUTFdd michelson_test_scripts/opcodes/chain_id_store.tz -exprtjDuLEzh8dcjpCcJiiuKXDdG3XusjuuURVCh3JWKBgjJGsVsMs michelson_test_scripts/opcodes/check_signature.tz -expruHKTiWeY6mty7RokwdyZdwdzHQbu7udbbZbpu3C8h9n6jXnp4v michelson_test_scripts/opcodes/comb-get.tz -exprtsyJo5ceZQM76zpAUeTren1YnBxw2MNDKmx8k11Ejai8T296Sg michelson_test_scripts/opcodes/comb-literals.tz -exprv733yfMh1C9uyuAJJP66WPQDXAjjfcTcSfHhbboJnz6DUCEh41 michelson_test_scripts/opcodes/comb-set-2.tz -exprvHamsTHMJKF6ohaSAwdgp2Sv33LGgYnjase3LUcwXKnJfh53wn michelson_test_scripts/opcodes/comb-set.tz -expruufsxtik2vxyQfL3QKNWWH9TnJZgGx1ELi3AR5L3LM71uqxiP4 michelson_test_scripts/opcodes/comb.tz -expruKknV6VYzPHkSxc3EFb488JPBfUX1UHsJUzceaGFafdnbgsKw2 michelson_test_scripts/opcodes/compare.tz -exprvGXTYwatNh32w78r83SuLAW1YQefufYN1Bcu9AZ1BLDUU77dKR michelson_test_scripts/opcodes/compare_big_type.tz -expruR3ZCLJTuojpTuS2sR3SGxqait52kXQNKfy8bipv69b2XJZG8A michelson_test_scripts/opcodes/compare_big_type2.tz -expruUDL3EP43hFhcdCZD7K1xvfPtiNWfkU2Nyq8jmr9XgZuXqWXc5 michelson_test_scripts/opcodes/comparisons.tz -exprtjqEmEBnmG7yiDXn224ER9bt4qh18LF4LzFSfoeuo1cbJpNBPy michelson_test_scripts/opcodes/concat_hello.tz -exprtqd5qPLeh5Fi52YdkgWuvRXctgUoxU1Q4JDB2VseRk6DAEpMvd michelson_test_scripts/opcodes/concat_hello_bytes.tz -expruv8MHvRmp3ipXYRyyP4aEE4iFHWsNZjNQSaCWUt7fwbgLeFBXY michelson_test_scripts/opcodes/concat_list.tz -expruYk7GXYQ7bKbUcqcHDKs97USVBrxAkzSo2Bkj5AXVjSawDkNAS michelson_test_scripts/opcodes/cons.tz -expruMW9W9kkb2JaQWzKVThky4ULQ6ckgLzE2xD49XUp5E1iwWfUbe michelson_test_scripts/opcodes/contains_all.tz -exprvDvotLP1G2qjPJiqz2RvVUm8wJ2cEuFvKtm7YUNW3w6krDponF michelson_test_scripts/opcodes/contract.tz -exprvNrgGoLvfEaXw6QmjQrkXESpWo72JHR4G4mhTJy7Y266YXa3fe michelson_test_scripts/opcodes/create_contract.tz -exprttdxhC3YwJ9SGJNTDMQRpyWX1KwqAUuPbkQHX3uMPHNt3GKkZK michelson_test_scripts/opcodes/create_contract_rootname.tz -exprttdxhC3YwJ9SGJNTDMQRpyWX1KwqAUuPbkQHX3uMPHNt3GKkZK michelson_test_scripts/opcodes/create_contract_rootname_alt.tz -expruxUAUoijmC6A4rZK9XHcQL4WmgreJwT17hrgpuYkg1VeELBdbF michelson_test_scripts/opcodes/create_contract_with_view.tz -exprteqmco8PDGH1PnTGgF5jPjBPCYyZfyvER2ULtv2y3MRgGdcP8T michelson_test_scripts/opcodes/diff_timestamps.tz -exprtt6joHWnYr4AAW3uem8nzbxYgLcSpEJtaUT66qWchoKPS8sFXx michelson_test_scripts/opcodes/dig_eq.tz -exprvKBfwAg4hVHrTtq3UV8AunaqUKxAkvx35TScbZDARNSgH737Ck michelson_test_scripts/opcodes/dign.tz -exprv8t3ZfoBs6B7LMeFNN6U4PRpE1M6MhdtKPT5keNZT4je3RBadj michelson_test_scripts/opcodes/dip.tz -expruncwh1qqNqSwq6kHYXfwhQyjpuJjbernTsyHAMnaLjU5h3qjxr michelson_test_scripts/opcodes/dipn.tz -exprv62zo2ACMdseAu1HKzDDLSjBrYr2nZzi36PCTVJqcBwSdvt4yU michelson_test_scripts/opcodes/dropn.tz -exprujbvaRkoroj5eVgboUyeP3578oJgScTQ78eBYMgfdLVaGWPPTW michelson_test_scripts/opcodes/dugn.tz -exprur99uFkrwM63FXSTqSTypHcfEmzb5KQ9EypTRqZWDY5NP6tCHL michelson_test_scripts/opcodes/dup-n.tz -exprtarW6tiguR7YAo6SxhCUDs1pLDhx9xJEG78h6GnXLAWpt3H1pT michelson_test_scripts/opcodes/ediv.tz -exprvQhRaLYxiWN3QsJgT6VKf6DmGVuXR8DxeU63P9A8iNWA4TVQfs michelson_test_scripts/opcodes/ediv_mutez.tz -exprtuM993oiKiYWoztZwpAaUuvDDcx9xDX31Q88kpuo7owk6Q8JeR michelson_test_scripts/opcodes/emit.tz -exprv8Sy3DsiKMm3ZQPmi46kZGn9ctTigpLB2t6xYFdYkkeVHMXy6z michelson_test_scripts/opcodes/empty_map.tz -exprufqf2G8PoZN768K2YGex6M7zmz7bYHE5LF5QHJBVvFtAFLi6qr michelson_test_scripts/opcodes/exec_concat.tz -exprucYyrHMR3wgJLwFq1o6GPuByry7sroRiBPrt58fz3dRSRSzC3S michelson_test_scripts/opcodes/fact.tz -exprut53jocMPdPP8FXrKRDYSoRaxk1FXqCt7o46ak2wQaocjsSwwx michelson_test_scripts/opcodes/first.tz -expru5fjTGWP1BXZz3BbbEFyDFkyZGJKHcZ2Y6jDT3CdHHp81n6G1r michelson_test_scripts/opcodes/get_and_update_big_map.tz -exprua5oh3PDJEPQbEsnbHYCz6L7bY6kNvpyhEt7Cg9sPsrx82UmHQ michelson_test_scripts/opcodes/get_and_update_map.tz -exprtgnkjSH6Tdw5C1BMKr8kCJjEnxCfMiaAxHTVLnEcyCQ6WmJ1jr michelson_test_scripts/opcodes/get_big_map_value.tz -expruv8JdHeURNpuLHao37SGJauDPwB9yxFXUaL6hNCdXGzbHSqCZN michelson_test_scripts/opcodes/get_map_value.tz -exprvHC1MDkeqCNL8yrN74nmqk5qrZCvR42qoVUxYCB4ALpgDfmhbL michelson_test_scripts/opcodes/hash_consistency_checker.tz -expruzeve85eDLTpQ1EbgrQQcEUft7AGauZBwtK1ibuvJpwmZt9AE8 michelson_test_scripts/opcodes/hash_key.tz -expruycqvZn4ufKjVQmYXcCfAfm7C81zN3BAqxuYVVfnpFibSKsahG michelson_test_scripts/opcodes/hash_string.tz -expru34ooMhYSarFg7vZCe1Y23jwfxfHiDqwaE1wGXC48yjB21PLi1 michelson_test_scripts/opcodes/if.tz -exprtmbKAmbV2XioTbmpJQpg9QDAxXkTBXmKRWdC8zbk8CWAtVXwAc michelson_test_scripts/opcodes/if_some.tz -expruTGRZeiojz3Rrr45KUcwtpJuJYu6U8pxi4DBZpL2kGavVxxM4H michelson_test_scripts/opcodes/int.tz -exprtu4Xbe67UZyTubEtKx83bMyQGXDwBibcdgLF5hftZYTEL2kSst michelson_test_scripts/opcodes/iter_fail.tz -exprudLYgw6yWSrTHpXYsg9NcZxGGpCxdNFbNv7ksr6Ss8rNmh2fgT michelson_test_scripts/opcodes/keccak.tz -exprusrBf5Sakr6dRngzuPmwsP28X6W56nVqCXqG1Jcfrd1SYwPRuU michelson_test_scripts/opcodes/left_right.tz -exprvHZpmtBKjjsUZmchx2RTLmFAZnYKCnHSKXaKUdP5EUpiPYwsp2 michelson_test_scripts/opcodes/level.tz -exprtkasRZbYRQg7WKnoXwJnRwXkvmjZEY4yPYXKGAQQFUupt5VAmt michelson_test_scripts/opcodes/list_concat.tz -expru32VE4LnqAqhbpUFCdgEdRSHjLQipkXTjn624fL41yk3a4H5Q3 michelson_test_scripts/opcodes/list_concat_bytes.tz -exprvCkexzSQFgEWkFvrkrQ8wATasfkbKCyeXYSM4qZft3g3UuoTBi michelson_test_scripts/opcodes/list_id.tz -exprtbHaLLF4cUTh4VCjtnH32EAA2AFwvPBsCzUTgrrdofbotKMyr7 michelson_test_scripts/opcodes/list_id_map.tz -expruAxpePKSFaGkjukWx4HEZAvXaWvyfyGyxCfhvK9tZjkPNSpZ1m michelson_test_scripts/opcodes/list_iter.tz -exprvSCwmQGBkxgu2Tg5rYUXbyv33SpUskCJS7sPF4LN7e5pQ1fn7z michelson_test_scripts/opcodes/list_map_block.tz -expruu6vcnLhDhSkSo8NNNJWQL99VCFr6iArtKrmavJWSNkQwDJsKC michelson_test_scripts/opcodes/list_size.tz -expru8Et3hTjxKQpydKSThjR6fXSmPEmZDjBTNhTAbuyNjcPYoUQUL michelson_test_scripts/opcodes/loop_failwith.tz -exprv15pFChKhH3QKoJn5BCT1bP4R7DjnXWtTDsSfwf2eVonZNxzZs michelson_test_scripts/opcodes/loop_left.tz -expruAKUrHWCxb3qtVQ1a8qDzrS19HnTm7bS146AztFHekvpqbehaU michelson_test_scripts/opcodes/loop_left_failwith.tz -exprtch5jHa718ipv2f28nbAQzQxk5LneyayirKxTBf8Q4gtS1XNGo michelson_test_scripts/opcodes/lsl_bytes_016.tz -expruaRKkzMwKE6uDBPyUZ2u9nfKo1HenCVQLkBvevtteAxh7ey3w2 michelson_test_scripts/opcodes/lsr_bytes_016.tz -exprubosuA8peKBt4EEo1RsYjxSxK7HXytSkBFAjns5Zg7ncicPWrC michelson_test_scripts/opcodes/map_car.tz -expruqCpEBS2R8FqpBfDNUNrPhXZr39CBL6zKpyMogJR94sve62iv9 michelson_test_scripts/opcodes/map_id.tz -exprtb1QBmNfCYjce9FnvKdikbtgqcN5o2VdVwZZP2Fmy8C3TJjA7q michelson_test_scripts/opcodes/map_iter.tz -exprtuspLRSrYnp2FyqNcLfsBrBBFD8nnFog2Em3p7tfG4DcGujS3f michelson_test_scripts/opcodes/map_map.tz -exprtipeMFcMFwYRAmzZBMoUjrtPYDk5ZyhMSyuhSgfiJV5UNAcLGp michelson_test_scripts/opcodes/map_map_sideeffect.tz -exprtc9HPyzpfc71TE4a8UbRPxfdm4WGRPNQhfB5fHiWwkh1aA8uzm michelson_test_scripts/opcodes/map_mem_nat.tz -exprtrkfCSUckShrEP5TmC5Y4CdeU35FFL7R8kyJHQUFZ4DNdJZasD michelson_test_scripts/opcodes/map_mem_string.tz -expruqncptpX6oXeX88mAkVHh9DnzWb6vPwT6LvuND9yobgcH5Gd2x michelson_test_scripts/opcodes/map_size.tz -expruZ7Tb7uhcAu3MhiDJFWrJiYseWyagZYEnzjEdpjSei8i73hsfG michelson_test_scripts/opcodes/merge_comparable_pairs.tz -exprvNxEfUTwaryUzets4qyTbHAfNPb5ARQsMsxbm8CnGNHDedqxgy michelson_test_scripts/opcodes/mul.tz -exprtYi1xHmB1AY6j4e3XTPvXpmuWnM4b4o78yVihYt1i2yNjrQqhY michelson_test_scripts/opcodes/mul_bls12_381_fr.tz -expruFTKqYqMmWSakzE1gjs2p8kWtcRWTaddkYL5p2Z8wpcCfe5ei1 michelson_test_scripts/opcodes/mul_bls12_381_g1.tz -exprvBDM3kep2f7bRkhRa2XWt9sdPGJ79sq6TdWNNnM4yydTQ88TaH michelson_test_scripts/opcodes/mul_bls12_381_g2.tz -exprujbPsZAUa1tzgWNgeHEQ22JXDfNhkgx6sCCxbWjYoNWPbTvwhy michelson_test_scripts/opcodes/mul_overflow.tz -exprth31LKm5FDFGxcXg1Rv9z9YeAQ8eu2oYTh2zZ7kJas3f5CWkZm michelson_test_scripts/opcodes/munch.tz -expruP5gECQdRLkmuYg8xqvEAdE4oRGFjDVG3ZkWxtCyxve1jviw6k michelson_test_scripts/opcodes/mutez_to_bls12_381_fr.tz -exprtw9PgkJCxyqdLjuA4dEdRjQXY7Ge4a7jjd2UoU6Q6KrvhFgciM michelson_test_scripts/opcodes/neg.tz -expru5fYi1tAG8a9j2dYT561dXaox8wYjsZDZP18xPa5JN3bUNfHWS michelson_test_scripts/opcodes/neg_bls12_381_fr.tz -expruY94PxNhmT8BeyGrFurRF6gC7XfgsBY9Vjh6hJyiDPaR8nFmri michelson_test_scripts/opcodes/neg_bls12_381_g1.tz -exprv9bM4xnqjA33RkvUzz8ZppJXT32KdNXoYqY2NSh7whBcFPn2QS michelson_test_scripts/opcodes/neg_bls12_381_g2.tz -expruZzA96Rh5o6HBboygY3iD97dgQcepXd45WBBD4DYZ2qcn8cxyY michelson_test_scripts/opcodes/none.tz -expruat2BS4KCwn9kbopeX1ZwxtrtJbyFhpnpnG6A5KdCBCwHNsdod michelson_test_scripts/opcodes/noop.tz -expruMUpBKBPGde4GfNLM8NgMq9nL6KsQXGA3LPt4C6wtMTxcUnE9A michelson_test_scripts/opcodes/not.tz -exprtnpHGyp2TurQb2YzbXBKTipXnrUQ4RrZwPxWfa1yMXS7oi49jV michelson_test_scripts/opcodes/not_binary.tz -exprtr3AhRfBVUibP5MtbenGDTEasfxSJAFsuYgkjmLqfpHnDahfWz michelson_test_scripts/opcodes/not_bytes_016.tz -exprusKUuYeoKXUAYtUhtknryT9MpbPZVZtbfUNCdRpXUbdzEzbwmN michelson_test_scripts/opcodes/or.tz -exprvG84juZWwLHTrhtvWFWBs8D2wZw6rfpoAbXp2pkekuCMAaPbAn michelson_test_scripts/opcodes/or_binary.tz -exprvN5DmSbMk2JQ9nNSEakbicPj4vfGP4N4iWo3yabNAFvqNxCAkq michelson_test_scripts/opcodes/or_bytes_016.tz -exprv39cZxxm6fTcFSbLcwpBbAPW56FPqjdf6aGm21KqGA6DQtwn6u michelson_test_scripts/opcodes/originate_big_map.tz -exprunveMvzjDskHYCvYJzDfRR9aGwwvXkVUMqTwSxJJbEjeq63c2D michelson_test_scripts/opcodes/packunpack.tz -expruKkmmajE1UFXRHXtntLZU8VvnLfFKwYPd4azsAdcrDMaq5zu9H michelson_test_scripts/opcodes/packunpack_rev.tz -exprtk9p4ur3KZK2w8ziFoZVHPABxQWZXeSNowcJuTauL3zTxr1zcH michelson_test_scripts/opcodes/packunpack_rev_cty.tz -expruSamDrL2Dh4zp92cVgfV7ETT7VcnqACDVcvnafi3qgBZq9v3PL michelson_test_scripts/opcodes/pair_id.tz -expru3WFEX5bVjBUkZzuWspLG18hy5jTzbr2WtKEYpfPHGpDFvcqhd michelson_test_scripts/opcodes/pairing_check.tz -expru2U5Bi7ehgkQvP7Qmij4c8gkSFUBNtiCyXMX3WwGjEdRRZc5x1 michelson_test_scripts/opcodes/pexec.tz -expruPr8QtATywJFqPjDhF7gyqdF15L6J7pxgpypzorEvtubdJN8U2 michelson_test_scripts/opcodes/pexec_2.tz -exprvBUenyTMJKwERZ1ULzMVrJ1owqymBF32f627arqtFUzMpaMvbC michelson_test_scripts/opcodes/proxy.tz -exprvPaPcYHvKmnyBMaYXtp6ZuaSEHWr5y92bcroKKppAZvF4RvcWE michelson_test_scripts/opcodes/ret_int.tz -expru8MKLXqiNRYnPccUN4if3VnWfthDy24K4zuJrFh2JaMmmh6Rii michelson_test_scripts/opcodes/reverse.tz -expruta4Bjo3FggDcvZDzEVwzeTcdZptzkJZyFEkdB8suFGbMVtT2Z michelson_test_scripts/opcodes/reverse_loop.tz -exprueR2MPCHUFtPjMZXE57X3EsysuWJXGRz8ZgcPJj21UySLqULV1 michelson_test_scripts/opcodes/sapling_empty_state.tz -exprvSNMswzVUk47vqs4wTGipDb3qDKVUwNBDwXtGzjCprEYx4nWPo michelson_test_scripts/opcodes/self.tz -exprtzokY2FHvPvB9YHSi8MM5YUbPdUPLi7tEKkp8BKongPb2zrZch michelson_test_scripts/opcodes/self_address.tz -exprukm3NvsYbS9ymX3MuXh6LciuF8ef2qt8ktTGaXtyFxCpisMBdD michelson_test_scripts/opcodes/self_address_after_fib_view.tz -expruV4HCC6sRdEL5HyXVC9gTkMZbh8BnxXsKZDTydtztRhDUT3qxa michelson_test_scripts/opcodes/self_address_after_nonexistent_view.tz -expruUWxiqrD566farETUi3VChWNZ5teemC3q4G8tf83xhjTwRSEws michelson_test_scripts/opcodes/self_address_after_view.tz -exprvQ8rhMFcCrwNSLZERQSQ9TMR1Tsnyj7R1jS8J2UESKXUoJuLTV michelson_test_scripts/opcodes/self_after_fib_view.tz -exprvKoMUnUmthGpVmQfYkLa8F6GRwmU36D9jYXNG8j8QbQYNWUoAC michelson_test_scripts/opcodes/self_after_nonexistent_view.tz -exprtXqpN6sqTKUVNissE3rkzKGSBuW2gTh8pRb3XyHZ4dpaAqLnhL michelson_test_scripts/opcodes/self_after_view.tz -exprvDVUQXNsfs9FiHkMSofonWCWcBfYbfxeQy9DRaa5Tnbw1XM18Y michelson_test_scripts/opcodes/self_with_default_entrypoint.tz -expruXGf2YpXKkr74mcv83fQ6bztVD1RBoFXaEnAd9bidnRXcfD3Nj michelson_test_scripts/opcodes/self_with_entrypoint.tz -exprudmJ37Q8ZASPbZSSBfy5UezxLhniszTVkLAB8QKvxkav4gVVYr michelson_test_scripts/opcodes/sender.tz -exprtufbuVP6RKm1PGPUQnZy6dqwxCha1jbafqyVGpCUNWeUVpcBhc michelson_test_scripts/opcodes/sender_after_fib_view.tz -exprug4Jd1WdLqrZWiG8PsGDETN1ahpX5PycBrdNWadM96M5SjvLae michelson_test_scripts/opcodes/sender_after_nonexistent_view.tz -exprvR3pRxvwuwM1c4Jk1zRfuDabRPwLnazpSsySQkzymatANufH9h michelson_test_scripts/opcodes/sender_after_view.tz -exprurSxmHBRCHUxtXcqNkPA8UE6gaFeJa19bBhq1CarZ3CZuAzShs michelson_test_scripts/opcodes/set_car.tz -expruogQk6tG5W7CtZrcMzsRtJ1f9moG9y5Qg5j29NATiaSywvQCcS michelson_test_scripts/opcodes/set_cdr.tz -exprvCt5LtbC3mLLWHdvyxGcX3ND21Ym5GayCvePEHHGXAtgWu32sJ michelson_test_scripts/opcodes/set_delegate.tz -expru133Wm63xA1qs5ymovjbP3N3iwPoTMcdUsbUqqbTf896jU78WR michelson_test_scripts/opcodes/set_id.tz -expru151wgMY5reA7WVbnvkHrh9MVnfYFbCDaiE2aTGmkKACu2ZbJA michelson_test_scripts/opcodes/set_iter.tz -expru13v2dm35MgMgTbwDJ4nEwNjRTau8mqztAyxGxXVbHNmskAA2q michelson_test_scripts/opcodes/set_member.tz -expruE8c9EzG6kYQdp5RQXrAt2CekSFXVtKUzNDUnpVTDygEBP7VvF michelson_test_scripts/opcodes/set_size.tz -exprtzSBcPatLYnGe5xtsSNGVjNBLMmHefxsQ7Q2QNjDMGmADKdWUC michelson_test_scripts/opcodes/sets.tz -exprteVcB53uqnwQsZMTsBojwez6tkgRqj1qWCQTLgaQWxQGiNWXEE michelson_test_scripts/opcodes/sha3.tz -exprvPbB5NtiV87RARduqoXtMoRjjy6jX8WYrfiu3RDjQrTKxPQnoe michelson_test_scripts/opcodes/shifts.tz -exprtnS2EjwJ3MdSWS7R6UbZMqFoUHj1JpUhhtJacXdfmmzRNHL33W michelson_test_scripts/opcodes/slice.tz -exprugZMQtZN7safMU7hV5QpM7nh7Vi5ur9sGjeWsmGRkW1ETox8uR michelson_test_scripts/opcodes/slice_bytes.tz -exprvCqvDAp66YnPaZDdaAkCNafoGtw1fEuWaLxMFeMnX6oqrb93nP michelson_test_scripts/opcodes/slices.tz -exprtzW4jh4MgY6iXgiCXft5q3Mig5XXANHn9CmcL8ApTrdnQgWzAm michelson_test_scripts/opcodes/source.tz -exprvD9HJMfLEUdamfH9U8ozBaxA7hYVRMbK7At6sUqFMmhZ6UorWv michelson_test_scripts/opcodes/split_bytes.tz -exprvJcmHwozD2DTtagjJJfyPgoCvBx5bMzXAkrsteYVvxeMr9SWm3 michelson_test_scripts/opcodes/split_string.tz -expruDY992zB37mWpZwFQCrfDbkwmrCmjSHD4fzQcW1z1AeWeW8M3r michelson_test_scripts/opcodes/store_bls12_381_fr.tz -expruZAkBxtwSXuMp6ZDNp41mJ6uZ4bw7RF9HNzJS9EnzTLxVhQ4SB michelson_test_scripts/opcodes/store_bls12_381_g1.tz -expruZfFC7WkBQhK4Ksg5k5WxBamF4PvH2NGCxcd4DHUkKfeqQEBUe michelson_test_scripts/opcodes/store_bls12_381_g2.tz -exprv8K6ceBpFH5SFjQm4BRYSLJCHQBFeQU6BFTdvQSRPaPkzdLyAL michelson_test_scripts/opcodes/store_input.tz -exprvStWRo24QuETruMmMqkmLme6UAMHuTRNNq9Lq65oFgUvQmJGPV michelson_test_scripts/opcodes/store_now.tz -exprtZPsTsBtNf9hjv7Yfda2EV4Sz3iaHpk4NkYHcKteXbsyQ9d6pH michelson_test_scripts/opcodes/str_id.tz -exprv4UZUuBDCZZjtW5kaezZjaKqpi1GN6vxHsvQNNkFktnaEbDb1M michelson_test_scripts/opcodes/sub_timestamp_delta.tz -expruVuXhQmoBMzZjPeY7VQSuJxefBBTuPyNR7PGnYhwouo9zKg3T1 michelson_test_scripts/opcodes/subset.tz -exprtz2jbsXuMMPAXYAGJZqjuBp8iF38XadE3YuZoC2W5NkyhhHMuq michelson_test_scripts/opcodes/tez_add_sub.tz -exprugbVFDGWcSSozyN3EK3AcdwtPeES3ao45HNogWc5V8fsJ8NsSP michelson_test_scripts/opcodes/ticket_bad.tz -expruwtzPEyCm4Vaq42Fct7QG5eD1MzXzkJbRqm6EVQH6YSV2QLkr1 michelson_test_scripts/opcodes/ticket_big_store.tz -expruqx789AMcKUYwDeeeRvSnwdCw8gMVvWA6vuzPzBQwBM2qcDXJB michelson_test_scripts/opcodes/ticket_join.tz -exprvMp1LX8aeyEq9NiMXGyD34J4offZDANGRwFTxoEWXumEsDdAP8 michelson_test_scripts/opcodes/ticket_read.tz -exprtvtEFi6v3awAwbHivJkjki6mDNivewiCBeJDJT78PqWtq7VyUD michelson_test_scripts/opcodes/ticket_split.tz -exprtifPFaLqHvR9uGWbeLj5r3YVBnKaawt12q3BMhM9wsUdM9dFNy michelson_test_scripts/opcodes/ticket_store-2.tz -exprvJGjz1EDdnAPWZQ7ZngDNDDDXnxA2VY6SHdHKu8LxqcVHd3E6z michelson_test_scripts/opcodes/ticket_store.tz -exprvDjqte3hX8aieidgPA2qyPWA5eYuVrvb3KKZ8aYkeDotovgkQ4 michelson_test_scripts/opcodes/ticketer-2.tz -exprvSU3oSiKqMLpWgBhwJZbEMDnvKiNW57MYQ8YG787N7jocXMEuR michelson_test_scripts/opcodes/ticketer.tz -expruhV9RSEPAtKAUhBbdTw5gPFdjcKk8zr7cVLSsGtmJuH3o7VXXo michelson_test_scripts/opcodes/transfer_amount.tz -expru3MSjYZRmQi3yiN6gYa4X6rs88XLWH4H8ivzrCvxs8z8cJfu4Z michelson_test_scripts/opcodes/transfer_tokens.tz -exprtbACDcFtDfEwsBA5LAG13uMRAjnQsFjzNELMS7jQ87bcqgdE6r michelson_test_scripts/opcodes/uncomb.tz -exprufJpS3BWpgv4QBaBEMucbn1jsVpdqEGLLMfXjDuKGPRGCpZUkj michelson_test_scripts/opcodes/unpair.tz -exprtqjpmEs9GUjSEzJYSnN3skiCb8js2bY48R9Lhxk9JW1CKnm6VP michelson_test_scripts/opcodes/unpair_field_annotation_mismatch.tz -exprv4ACaZe4aECCfG93NGVVHbQBNQ5Atxtju5vWASZSEp5sLECcjg michelson_test_scripts/opcodes/update_big_map.tz -expruWzM36ATA3fAee4WHDS4vvMeewkwhya1fZaa6HFPbjwt9vvGpg michelson_test_scripts/opcodes/utxo_read.tz -expruNCoB4n3KQTeXbDJWLwynT32T6dz2Nxw5f7SwaqRNkQSBog79A michelson_test_scripts/opcodes/utxor.tz -expruJxgC2Q8Ubt8tPyQbZ41j6w4b8yw5f6bxjrMMM81TmMC9x5Lrc michelson_test_scripts/opcodes/view_fib.tz -expru9EavkgPCUAwHccJf9j1t4aTTssPKoBkCqC4YNr12kxXSwqFqD michelson_test_scripts/opcodes/view_mutual_recursion.tz -exprv4QXQuZtQE7CpKyecjrXJ8U2ovU1qjUKtw37J6kAEmu3fAKyN5 michelson_test_scripts/opcodes/view_op_add.tz -exprugGjNh2tTsofJyhkNMrQVJnkyLydJywNVMAXL9rW3nhnCmRd3F michelson_test_scripts/opcodes/view_op_constant.tz -exprtn56ZZ3mXHoz9GMS9HGMfmgayukvVXub8zXeDKbE4U7L5L8dXX michelson_test_scripts/opcodes/view_op_id.tz -exprtaNDFRcdw8SB4Bz1a6CKARxZaoxpc6G2hnJYedp1iZgJqEwMNV michelson_test_scripts/opcodes/view_op_nonexistent_addr.tz -exprtmA9Auh8GAHpvKP2qkVhiaRCtokWcw7qg31CaxbouJW1g8yYK7 michelson_test_scripts/opcodes/view_op_nonexistent_func.tz -exprubMFU6xrnHREoXUZinEeV3PuZBjSw35M6gti7tyQ83S6LTKja1 michelson_test_scripts/opcodes/view_op_test_step_contants.tz -exprtj9pixxS7UHchhthZa8zdU2GAjvW7oA7QEMA3PHgf88vmAEjFb michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_input_type.tz -exprurrbjDgnipRBhqb7pPLQFAgtPm5jrpwJjJL5ZvQyFJZzGvqteY michelson_test_scripts/opcodes/view_op_toplevel_inconsistent_output_type.tz -exprvSPcq1w7iTMA3LjQcHegnRUQ621sqQLRJm1Zh4tjHCkmeZV268 michelson_test_scripts/opcodes/view_rec.tz -exprv1LkSMvSyZSBrg9Tf2PdcoiWDYPz2npmYb7rH6bWx2sYMAHMgg michelson_test_scripts/opcodes/view_toplevel_lib.tz -expruF13NKWWyF51seiYv4tsb55dZHYViNWDKTmhLq9b1LXXenwaB2 michelson_test_scripts/opcodes/voting_power.tz -exprvSZMaiMSbKgRYm1W4rcoBGN21bPu8NMQuYBH9ujhXGeHhdtVGk michelson_test_scripts/opcodes/xor.tz -expruDwpzxhBEyYY2Tqt9HE9iL18wWJEUJtF9WnkfAyHg1mqkRqs91 michelson_test_scripts/opcodes/xor_bytes_016.tz diff --git a/tezt/tests/expected/self_address_transfer.ml/Nairobi- Self address transfer.out b/tezt/tests/expected/self_address_transfer.ml/Nairobi- Self address transfer.out deleted file mode 100644 index 88b38d676bb0..000000000000 --- a/tezt/tests/expected/self_address_transfer.ml/Nairobi- Self address transfer.out +++ /dev/null @@ -1,141 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract self_address_sender transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/self_address_sender.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 592.748 units (will add 100 for safety) -Estimated storage: 339 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000379 - Expected counter: 1 - Gas limit: 693 - Storage limit: 359 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000379 - payload fees(the block proposer) ....... +ꜩ0.000379 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (contract (lambda unit address)) ; - storage unit ; - code { CAR ; - BALANCE ; - LAMBDA unit address { DROP ; SELF_ADDRESS } ; - TRANSFER_TOKENS ; - DIP { UNIT ; NIL operation } ; - CONS ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 82 bytes - Paid storage size diff: 82 bytes - Consumed gas: 592.715 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0205 - storage fees ........................... +ꜩ0.0205 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as self_address_sender. - -./octez-client --mode mockup --wait none originate contract self_address_receiver transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/self_address_receiver.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 593.190 units (will add 100 for safety) -Estimated storage: 340 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00038 - Expected counter: 2 - Gas limit: 694 - Storage limit: 360 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00038 - payload fees(the block proposer) ....... +ꜩ0.00038 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (lambda unit address) ; - storage unit ; - code { UNPAIR ; - UNIT ; - EXEC ; - SELF_ADDRESS ; - ASSERT_CMPEQ ; - NIL operation ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 83 bytes - Paid storage size diff: 83 bytes - Consumed gas: 593.157 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02075 - storage fees ........................... +ꜩ0.02075 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as self_address_receiver. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 2962.097 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 - Expected counter: 1 - Gas limit: 3063 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 82 bytes - Consumed gas: 1746.191 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: { DROP ; SELF_ADDRESS } - This transaction was successfully applied - Updated storage: Unit - Storage size: 83 bytes - Consumed gas: 1217.087 - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr bytes parameters more than 32 bytes.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr bytes parameters more than 32 bytes.out deleted file mode 100644 index d1cd3eec32c7..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr bytes parameters more than 32 bytes.out +++ /dev/null @@ -1,8 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/groth16.tz on storage 0 and input 0xf7ef66f95c90b2f953eb0555af65f22095d4f54b40ea8c6dcc2014740e8662c16bb8786723 -Ill typed data: 1: 0 is not an expression of type unit -At line 1 characters 0 to 1, value 0 is invalid for type unit. -At line 1 characters 0 to 1, unexpected int, only a primitive -can be used here. -Fatal error: - error running script diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- add.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- add.out deleted file mode 100644 index 1eea408b8268..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- add.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0200000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xa8b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0xfbf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x38beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x989b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x2648fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0xe568301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x5b2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x2a3a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x711a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x2b2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xa8b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0x4e61c1b9739b09c6136d03f10db4f1fe66368104f9dfb4a1ff2e147dc3209a5c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0xa1a688aadbbdba2965131e014d737cb8d52567301e3941d940e4617d0eb1534a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0xde6e9039874c89906a3f0161ad49e4e02e4bf18a44fcdd8f30ad1493e4b7c544) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x3e4c6416c64ad3c5e36efe949318a6d9b1724e3a40432d12eeff653428ae0f33) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0xccf8dd7732f3a043893d84d12bd5af746b567dce7751ebbb4ea2cae149105c3a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x8a1911fb6130ada278495eaaf297b06cc32b72924e177910e6a953b50eeb1826) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x01dc41c11307df45df4e95d942c61da257af08aa1c61ff67f7a3b8765d716e72) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0xcfea7e1e6ba3b0c89d32738c659c4efd5509edaf7e64b45af13d91d19d4a1526) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x16cb481085742002a06e43e19ba8f1a36064493d2437fc2cff621722e9db6513) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0xd1d327c5ea7170b5f9039c203e898b36ad288eaddfa69deb6025523a4663884d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xfbf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xa1a688aadbbdba2965131e014d737cb8d52567301e3941d940e4617d0eb1534a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0xf4eb4f9b43e06b8db6b938118c32077244154d5c4392cd108299af7d59410d38) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x31b4572aef6e3af4bbe51b71ec086f9a9d3ad7b669556ac7716262932f487f32) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x91912b072e6d8429351519a5d2d7309320623466659cb9492fb5b334733ec920) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x1f3ea5689a1552a7dae39ee16a943a2eda4563fa9caa77f38f5718e294a01528) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0xdd5ed8ebc9525e06caef78ba31573b26321b58be73700548275fa1b5597bd213) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x542109b27b2990a930f5afe98185a85bc69eeed541ba8b9f38590677a8012860) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x2230460fd3c5612cefd88d9ca45bd9b6c4f8d2dba3bd409232f3ded1e8dace13) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x69101001ed96d165f1145ef1da677c5dcf532f694990886440186522346c1f01) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x2419efb5529421194baab6307d4816f01b1874d904002a23a2da9f3a91f3413b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x38beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xde6e9039874c89906a3f0161ad49e4e02e4bf18a44fcdd8f30ad1493e4b7c544) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x31b4572aef6e3af4bbe51b71ec086f9a9d3ad7b669556ac7716262932f487f32) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x6e7c5fb99afd085bc111ffd04cdfd6c2f65f61119018077e612b15a9054ff12c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0xce593396d9fb52903a41fc0433ae98bb7987bec08b5f56001f7e664a49453b1b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x5c06adf745a4200ee00f8241cb6aa256336bed54c36d14aa7f20cbf76aa78722) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x1a27e07a75e12c6dcf1b5c1a922da34e8b40e2189a33a2fe162854cb2f82440e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x91e9104127b85e1036219349e25b10841fc47830687d28562822b98c7e089a5a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x5ff84d9e7e543093f40471fc043241df1d1e5d36ca80dd4822bc91e7bee1400e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0xa7d817909725a0ccf59c3f513ee2a1d92d515bcd772b5f4e785eb5615d1a7f6f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x61e1f644fe22f07f50d69990dd1e7e18753dfe332bc3c6d991a3525067fab335) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x989b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0x3e4c6416c64ad3c5e36efe949318a6d9b1724e3a40432d12eeff653428ae0f33) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x91912b072e6d8429351519a5d2d7309320623466659cb9492fb5b334733ec920) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0xce593396d9fb52903a41fc0433ae98bb7987bec08b5f56001f7e664a49453b1b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x2e37077318fa9cc5b370f938197d5ab4fcae1b7087a6a582dcd0b7eb8c3b8509) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0xbce380d484a26a43593f7f75b139644fb6924a04bfb4632c3d731c99ae9dd110) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x7b04b457b3df76a247a7574e7ba0229b1340e1d19d522bb41cf84296c61f7c70) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0xf1c6e41d66b6a845af50907dc82ad27ca2ebd5df63c477d8e5740a2ec2fee348) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0xc0d5217bbc527ac86c906c30eea4c02ba61d5cefcd9f66fe278c80b2557f7870) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x07b6eb6cd623ea016fcc3c8524b163d2b078b87c7372aed035b10603a110c95d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0xc1beca213d213ab5c90597c4c3ed3f11f8645be3260a165c4ff6a3f1aaf0fd23) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2648fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xccf8dd7732f3a043893d84d12bd5af746b567dce7751ebbb4ea2cae149105c3a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x1f3ea5689a1552a7dae39ee16a943a2eda4563fa9caa77f38f5718e294a01528) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x5c06adf745a4200ee00f8241cb6aa256336bed54c36d14aa7f20cbf76aa78722) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0xbce380d484a26a43593f7f75b139644fb6924a04bfb4632c3d731c99ae9dd110) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x4a90fa35f14a38c1fe0d05b249f66dea6f767998f6c221d69d158146d0ff1d18) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x08b12db920884420ee19df8a10b96ee2c74b6e5ccd88af2a351d0a1a95dada03) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x7f735e7fd25e76c3541f16ba60e7db175ccf04749bd2358246176fdbe3603050) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x4d829bdc29fb47461303f46c83bd0c735a29e979fdd5ea7440b14736243ad703) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x956265ce42ccb77f149bc2c1bc6d6d6d6a5ce710ab806c7a96536bb0c2721565) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x4f6b4483a9c907336fd41c015caa49acb1488a775e18d405b098089fcc524a2b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xe568301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0x8a1911fb6130ada278495eaaf297b06cc32b72924e177910e6a953b50eeb1826) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0xdd5ed8ebc9525e06caef78ba31573b26321b58be73700548275fa1b5597bd213) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x1a27e07a75e12c6dcf1b5c1a922da34e8b40e2189a33a2fe162854cb2f82440e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x7b04b457b3df76a247a7574e7ba0229b1340e1d19d522bb41cf84296c61f7c70) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x08b12db920884420ee19df8a10b96ee2c74b6e5ccd88af2a351d0a1a95dada03) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0xc7d1603c4fc5507fdc81b763da1f2d2e25f9042aac2677b214a23017ad5c8563) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x3d949102029c8222442bf09227aadc0fb4a4f9377298c3d6dd1ef8aea83bed3b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x0ca3ce5f583854a5016bcc454d24cbbeb7d67f47dc73b2fc1f366e333cbc8163) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x538398517209c4de03a79c9a83306e65c231dcd48146face2d5bf483874dd250) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x0d8c7706d90614925ee0f6d9226d4aa4091e7f3b35de615a47a09172912d0717) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x5b2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0x01dc41c11307df45df4e95d942c61da257af08aa1c61ff67f7a3b8765d716e72) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x542109b27b2990a930f5afe98185a85bc69eeed541ba8b9f38590677a8012860) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x91e9104127b85e1036219349e25b10841fc47830687d28562822b98c7e089a5a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0xf1c6e41d66b6a845af50907dc82ad27ca2ebd5df63c477d8e5740a2ec2fee348) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x7f735e7fd25e76c3541f16ba60e7db175ccf04749bd2358246176fdbe3603050) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x3d949102029c8222442bf09227aadc0fb4a4f9377298c3d6dd1ef8aea83bed3b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0xb356c2c8b472b4c5abd428c274348cf14250ee45380a10fba69bbf46a41a5514) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x8265ff250b0f8648691405759aae7aa046827455a2e5fe20e9b235cb379be93b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0xc945c91725e0f5816b50d5c9d0ba1d4751ddd0e247b846f3f6d7bb1b832c3a29) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x844ea8cc8add4535c5e52d09739bb7d99da115530328e8b1589af633e0b35c63) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2a3a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xcfea7e1e6ba3b0c89d32738c659c4efd5509edaf7e64b45af13d91d19d4a1526) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x2230460fd3c5612cefd88d9ca45bd9b6c4f8d2dba3bd409232f3ded1e8dace13) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x5ff84d9e7e543093f40471fc043241df1d1e5d36ca80dd4822bc91e7bee1400e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0xc0d5217bbc527ac86c906c30eea4c02ba61d5cefcd9f66fe278c80b2557f7870) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x4d829bdc29fb47461303f46c83bd0c735a29e979fdd5ea7440b14736243ad703) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x0ca3ce5f583854a5016bcc454d24cbbeb7d67f47dc73b2fc1f366e333cbc8163) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x8265ff250b0f8648691405759aae7aa046827455a2e5fe20e9b235cb379be93b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x51743c8361ab57cb2654e127c028694f4ab4fa640cc1ed462bcaab4fcb1b7e63) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x985406757b7cc7042990b17cf6340cf6540f57f2b193351939ef31a016adce50) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x525de529e27917b883c90bbc9571e8349cfbf958652b9da45234cf8e208d0317) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x711a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0x16cb481085742002a06e43e19ba8f1a36064493d2437fc2cff621722e9db6513) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x69101001ed96d165f1145ef1da677c5dcf532f694990886440186522346c1f01) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0xa7d817909725a0ccf59c3f513ee2a1d92d515bcd772b5f4e785eb5615d1a7f6f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0x07b6eb6cd623ea016fcc3c8524b163d2b078b87c7372aed035b10603a110c95d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x956265ce42ccb77f149bc2c1bc6d6d6d6a5ce710ab806c7a96536bb0c2721565) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x538398517209c4de03a79c9a83306e65c231dcd48146face2d5bf483874dd250) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0xc945c91725e0f5816b50d5c9d0ba1d4751ddd0e247b846f3f6d7bb1b832c3a29) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x985406757b7cc7042990b17cf6340cf6540f57f2b193351939ef31a016adce50) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0xdf34d066954d373e2bcc81d12c41af9c5f6ab37f57667deb4614b8f0613e1f3e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x993daf1bfc4a87f18505dc10cc7d8bdba65656e60afee476605955df6b1e5404) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2b2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e' -storage - (Some 0xd1d327c5ea7170b5f9039c203e898b36ad288eaddfa69deb6025523a4663884d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c' -storage - (Some 0x2419efb5529421194baab6307d4816f01b1874d904002a23a2da9f3a91f3413b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816' -storage - (Some 0x61e1f644fe22f07f50d69990dd1e7e18753dfe332bc3c6d991a3525067fab335) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204' -storage - (Some 0xc1beca213d213ab5c90597c4c3ed3f11f8645be3260a165c4ff6a3f1aaf0fd23) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c' -storage - (Some 0x4f6b4483a9c907336fd41c015caa49acb1488a775e18d405b098089fcc524a2b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b' -storage - (Some 0x0d8c7706d90614925ee0f6d9226d4aa4091e7f3b35de615a47a09172912d0717) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144' -storage - (Some 0x844ea8cc8add4535c5e52d09739bb7d99da115530328e8b1589af633e0b35c63) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b' -storage - (Some 0x525de529e27917b883c90bbc9571e8349cfbf958652b9da45234cf8e208d0317) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659' -storage - (Some 0x993daf1bfc4a87f18505dc10cc7d8bdba65656e60afee476605955df6b1e5404) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f' -storage - (Some 0x54468ed06148d7a4df9a34506e5e256ef31a9b56c66d8635c21b90f7c8a5763e) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- mul.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- mul.out deleted file mode 100644 index 5e75603e14bb..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- mul.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0100000000000000000000000000000000000000000000000000000000000000 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x0000000000000000000000000000000000000000000000000000000000000000 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x87a25b280438cfc7b350b0e2d8b21f5f8408e9bdf090571dd3094b319ae86868) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0xa6c9f4c0d4cdce57a0b62ce3e72cec52eae0a3fcfa76c36bd21c7c86e99fc83d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x25804ebabb2d9780d1407a55d30de32e9f2b7adf3c8ea0f75ca1de81460d474d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0xb40894438c8e2fe116dcf7359f9749ae3acb10ebb4d32c6a728872c2a4d2b26d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0xf49b419a11a70e24e0e5709d6076ca94423feb999d85ff80225f17b013b27d50) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x9320b3135e9af05cf18d6bf877c5c1d23fdc0359698e1afbe695b158eac21368) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x55ab878b91343d6afd97062bd3fbe33773bb9c73959cbbfffdaa809407480b0e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x8183fcdd8c98e009e3f37fa8b5522e39c304c2879bceee0561d0cde46b28c373) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x3563756c4ff5c12b913114017799af8428e6e8a4ac9e58566539217602169452) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0xc1b67ece270e04902acf261eb093ace0a7d5e31767d8a7e8f5b0e9fa27738250) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x3e32303d8a7d5461cf652bdb31bfbcd57b9dac493154494636d13e39b42a7f17) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x768c7286874cc5348f7c3d0f3688525ce62cb31417b167d84447957f3933be33) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0xa926135de1582acd8aa4cbcafbe9fc2311984981900ab7efe694131f567e7a61) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x43069535a17a72feb7170f2fc0ed42662d866518a44dea0d1928b05a05d0f30a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x270733ecc8ad2646ebd078f69c26e86a8a11aa2911f358b2cfaec47c09898871) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x572ea10d39037776f9c830677be3cd209a53045f1736150964af2726d79ce93f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x6739e14eed742687df9c9072284495d7670da73fa6df7f71d55f1c085751b61f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0xdc456cc8b4d389dd1ce937982176a0db91214868e20559fb72cedf4cb535442b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x4a1e1fed85421caf61a7454d4527cf88cc4b2ec77256e7876777951dd6728d6e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0xb8cb27f9926d77d681bb886a65a91631e7305a08f4f2bc646d703b0dbd07d639) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0xf81b4b288001fe1541f5ecec5e70dfb268e6ec4a5d29afddc38cb5a05b01ee03) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x3b06b22f06e8cc99e262d8128c6473114e46f835628b01f70a2516ec32ee1246) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x943bfd1b7156b3183bc62e89627f23403a3980105e40259f663a6c88b570b818) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0xcdae0ee9d2e80ea223e22e74a42b17a3fda65d2a83f12f177fd4f3f15965b721) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x6f5de32417068ac83a058d76c42ead4aa0f2a772844b89c383fe8cafd8c23e42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x4c64333f14e58d1f18840e610bf95b6ffd029eb7e9626a7de1317de07bc06b70) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x3071e1921ec27beee7c56aec7489cd72721ee17d27310f655a1b13fca7758704) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x6439143ec011e4b75ddaa6a9111a31522b31d3b4318f2a3e02c157184a8d990f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x95a1515b3a6a7fba11021b63139d0b1f6b5b3ea32c4f77a7e82d8b5c9206e900) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x6f1f62eabe0a4784ef32d940736b82946dfc5658a2b8d1e0c09bcd01945bed26) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x0fb5c6cdcec66d9e61822adf622581a3c3c2326aa15452022f85c6301ab6431e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x870fbf317f37e2ebbdf3e4a0cd821319eb3b8c159d42e7cafc360bfe42918959) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x5935c1ef5cded751a700599df9b247dfd66c2cdd9bd0dece969af31dd4db3e52) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0xa15e4850ea8a5be5f8d11cb8dcdd74076a13bb3887162a48c43f95e665800f53) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x18d4795bc198725f61c8ddeb04907180c369c39dae5deb6e02012f948f05c062) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x4d13486d53e43e63d4b05414379253c2d9fb2c3084737eb4295aacebcc9a9856) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x8ae6ee958f2c40886ea97f724f4d59f23d9afc69043024380d75c7a52c3e8314) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0xcb9c0565e3195b9bd7880cf92039af354648c93943fc9c597c7bdd6adba50f60) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0xcc314f9f215f1b0e511f3cadbc16fbc9a8be2957996768314e9667609176aa3b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x6b11aa1e88300282fc067020fc71e355158db40e2a65170370ea7267175ca307) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x3c9fd860f69f0338ef5e4bb1f561085ba3c6755e7c4d28624fe7d6473ff3f920) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x272721157452654bf0ae566d51db5229bf277791e42899530390c002035d0d1d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0xffc690cab4a872c0f0af7536f9af84c7a4a6012dfe777467635a0aac48e0763c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0xda5d746519732d2b289ab841d41708ef65e43ab1c9fd52b39146ad044f6b2a73) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x748bc12266cd016dfb56d8b976465e2595865a65cd220e54e868356ebc23594a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x0049d565766ae2384b2fd097c810ff5a52b49bf22b77b28cf8cc4ae94e23a625) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x808b140f1d708376ea5fda3d808467bd3fe6f6b749012270a9b9c0046165c72d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x8745aa87036abec609d26ca4d70d9fb6db78e151d9f20c6bc8aa579533e9662d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x44edfb33fc4ac9ef521419c823b6af02e53428e692542ebb7efa351b4fed096a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x1a215ae0252140eb36d367e414c74e848fa04008dbddacc4daecde4148a2231b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x89b312941fb46bf3ed66a5815ac5068f471d0ae7f18a3b0659c09bcbf9697f0b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x9acbe51d20ae85fd3bc40684f42fe7a0c7a5d95bb9836fa31439e7e14b26f416) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x6118124c521ebca6de31388b9fa83fcb4138a5a6087b7f94550efb86e61b2605) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x0da33e534705d29aec1569b0533fc84a9065e78cded913aa6b4fcb8e6dc78457) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x8ea43020b125a8cf25d56541757707f44756a34c48d2c1b1dd01568744eaa746) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x2309a557bf125239f17b1bf039eaeb2aa35fb86cd130d4a8e526499dfe5ac84e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x14feabe62d03bf84e49ca4bcf4f32ec9e69b647f65561c75e40ab3bcb5e8a24f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x564309a3de0fe9bd097f6ef5786e799966e2722a61cdae1378ce1842ae56d46a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0xfcfd6b65ccfc1ca0f76aa65149f89c8a37e9cf46d11273cc2e5a6a683afae51b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x411fadf092e7a3dc0a95926b58eee20dbb90761598fcffd4cf9cf67c4394dc0d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x1f11f44683fa6f887a4ee25769ada17ee34442ca28717d465850b37a12f4304d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0xbcc1b73b410363d82a7067cd12d0ddfda6f1d8450ca39fd5d466eaac2df42f09) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x76e440c59f34bc987a7808f66bac37b0ceec0723447ecf97193df5e0d5531b04) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x6dc4feb2b650db171d026794151af66ca5de3932a93012aa415f6ddb76428d70) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x3ca3d9a981d4692f396717a8ad3b439df75f71c084dd77bf061a400a7a8ecf36) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x495b461df06822ca749b43f1b9c7cfa94d997bdfc486c15b6a163ca84df0cc72) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x15245e97997fb4d7f77c958fb584b5437a70138cb25050d205d3e7ea7adf742b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x2d9334cf8067eac72250f2f542b210143fdba091e3284552f65ef9c529d5c050) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0x909b9aa234ca8c415fc271be5efa6580ac08fa507dfebc3b0fba8303c54d5215) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0xbbab3f2a73ec15c1524192c00727c746deffddc1f96a2475e2d30cc94882e82b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x6806200732f39ae9263a93d4770846aeb6984fb3043d7564ecd1a29fc572e33b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0xa4eb13e8a97e2b5c0923e38d20e42d5fcdef5f0fbe4794e89ad0f4cbab071c15) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0xcccfd0286d9796efd1c3a3152050358b8e385198ef3d8cafc4a702ebc925bc41) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x5573629a59f3745c4e37746f40ffce48f5d262b6b9f977e9a082a51da639f20a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x1a55a49219259dfcc5f43f108c2f378f91dfab8b0eacb39a4c7d5faf5d28dd3c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0xfb794df3d54d535862c33dc4c9fd44e7dcaf63947c9222ba149edb9c5e80590f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0xe362cd13cbc3aea9117bc1e5133b29b044a81d4594daeab05a8ad910e9674c06) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0xa7d4fb01e871e9696ac6b4352942fe7f0e4b82285a5a4340834fb8cf1d16bf6b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0xe8e9a92d243462323ddc3fac7ea8f620be1f4ea5cdfcc28c4cb2f3e944000e72) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x5c5931083e04dff412544ee5c8f2eae5dfb6f85327a348c1840be1f2228aae4a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x3cab64084c5cf930ee67515efaa9a4ff3652d83b50c21f84b4b18cecc82cd727) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0x3664d4c448a9c4bf1ca65a6e6f559f9514007c2496261bc4edcacbb53abe7c70) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0x5dac7534752b142ad0a4454ff17b06aae01d001e71968cfd270a6ca7eeb6986d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0xf7976f089a7b8fa570d983e54563734c47d584f4699c4ed4b70b4e0a7b278772) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0x415fca05fe5f8a5f1f8d1b0f98e2ea3d825fc1c6355365df9b45c4c39d8e8c33) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0x5f093c21f58d3b872011c9af9e916b2f7c8b78719388029fe2c0a184671b3023) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0xf512cb0c62dd2247fac6318a8e77c5adfe40724320517d325213ca5742263148) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x34d90ed392f4abad17b679356ae63f6a55084b530c18a3a88fd75365548c8c25) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0xdc3888e1ec70f104d18c09e63bb13c341738fbc20a416a8b68a3710878ec2c45) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0xd2c3ef335391513f05b8882585542773818fcd7db3b34f031f8ed422627c3d44) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x4dbff329ffb7cf3daf857a397ab121e80d1064f1bf07279c0715ce04eb8af625' -storage - (Some 0x8122686c678dcbc0a302f9d75197643108207fd79d8e911452f22383af064a64) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xb0c5816556729f95aaa68be2fb34eb2edfd3c9ac98669596ca9f262572963829' -storage - (Some 0xf46d74afcfe9036a2dc59ade3e33ab2e0fdeca7108527907f9a87fe17dbcef48) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x4da504775fa6efb66a94b0c74b5b9c80920483c32bf016807dae87c705d0b805' -storage - (Some 0xcad3c31ac0d68830faa65f55a7e812f2cf8ae2eba8f15e94d51f859d46320815) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x719eeeee8ade493ac3a0a3a742a9cee423c2f6790f8e8e448ba4618bf4d5b80f' -storage - (Some 0x5c9a4dc7dfaa30973a60bb1792b062bcd93ba8715d50b350185d957af0852300) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xa058f1d8283834dfcc9e6f76d5f58172faddc3a51a16e5c92823da4fca890742' -storage - (Some 0xfbf6f4100924d0f64653cfb859bf036268dd678fd5360e67140194ba8e90ba4f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x03b0af5909feab04f285e4470dbae4a19e9a23c9438e2a57538433326d7cce27' -storage - (Some 0xeff6a7ab1bcf078ddadd2a4f5dcc847951f475852a30c585e53e02a8919eac47) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xf49df98960a59c8d937bada91f7226fedbb5a02771fcce56780d6a0168186e01' -storage - (Some 0x44ac9ab247ed628c8e96daffc075f7cb3925effd568e78a7f691629fef28df3a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xbeb56d8150689b21e164f70cdbfd81e72e0071b6d005033aa30dad5b3656f924' -storage - (Some 0x05fb8adcfb2026e2c9609c7edcbfbd33f4df44cb80a2274bc8fdd1a58cd4690e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0x3867092164442c26405ab5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532c' -storage - (Some 0xa2681666d2a92b8b4268bf287e81e274ef196cf93de96c25dd3541e61c5cc364) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_fr.tz on storage None and input 'Pair 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f 0xd008362943c1237f5b297f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f6126' -storage - (Some 0x45d081e131a285730dc55f7e347a56cf6f07236ba44bc93af9423db057227560) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- negate.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- negate.out deleted file mode 100644 index 596d0837a3e2..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- negate.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x0100000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x00000000fffffffffe5bfeff02a4bd5305d8a10908d83933487d9d2953a7ed73) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x0000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e -storage - (Some 0x5a4f1f234532fb1c75a57c07fcc944d4d13c61870b685f62c865136bf196a045) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c -storage - (Some 0x070a5832dd0f4ab923ff61f7bc0aba1a634d7b5be60ed32a87b0c56aa606e757) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 -storage - (Some 0xca4150a331817b521ed37e975c3452f20928f100c04b367497e71255d0ff745d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 -storage - (Some 0x6a647cc6f282311da5a38163766590f986009451c404e7f1d994c1b38c092b6f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c -storage - (Some 0xdcb7026586da639fffd4fb26dea8865ecd1c65bd8cf6284879f25c066ba7de67) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b -storage - (Some 0x1d97cfe1579d5740116d234e1442c812706fceefad5861c0996d360953253408) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 -storage - (Some 0xa7d49e1ba5c6259da9c3ea1ec7b71831e1c3d9e1e7e6149cd0f06e715746cc2f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b -storage - (Some 0xd8c561be4e2a541aec830e6ca13d2a82dd9153d27d0b26768ed9f8ecc3c53708) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 -storage - (Some 0x91e597cc3459e4e0e9473e176b3187dbd236f744d838dea380b4729c7834e71a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_fr.tz on storage None and input 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f -storage - (Some 0xd7dcb817ce5b942d8f0ee4d7cbf4aa9c8b4a54de24a17618676fd5ad6e54b254) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- store.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- store.out deleted file mode 100644 index 1c5640386dd0..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- fr- store.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x0100000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x0100000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x0000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x0000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e -storage - (Some 0xa7b0e0dcb9cd04e389b681f806da787f339b4082fc6fdad07f178abe61104d2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c -storage - (Some 0xfaf5a7cd21f0b546db5c9c0846990339a28a26ae21c96608c1ccd7beaca0061c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816 -storage - (Some 0x37beaf5ccd7e84ade0887f68a66f6b61fbafb008488c03bfb0958ad482a77816) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204 -storage - (Some 0x979b83390c7dcee259b87c9c8c3e2d5a7ed70db843d352416ee8db75c69dc204) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c -storage - (Some 0x2548fd9a78259c60ff8602d924fb36f537bb3c4c7be110ebce8a4023e8ff0e0c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b -storage - (Some 0xe468301ea762a8bfedeedab1ee61f5409568d3195a7fd872ae0f67200082b96b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144 -storage - (Some 0x5a2b61e45939da62559813e13beca4222414c82720f12497778c2eb8fb602144) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b -storage - (Some 0x293a9e41b0d5abe512d8ef93616693d127464e378acc13bdb9a3a43c8fe1b56b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659 -storage - (Some 0x701a6833caa61b1f1514c0e89772367832a1aac42f9f5b8fc7c82a8dda720659) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_fr.tz on storage None and input 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f -storage - (Some 0x2a2347e830a46bd26f4d1a2837af12b7798d4d2be336c31ae10dc87be4523b1f) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- add.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- add.out deleted file mode 100644 index a2c91722fa80..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- add.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x0572cbea904d67468808c8eb50a9450c9721db309128012543902d0ac358a62ae28f75bb8f1c7c42c39a8c5529bf0f4e166a9d8cabc673a322fda673779d8e3822ba3ecb8670e461f73bb9021d5fd76a4c56d9d4cd16bd1bba86881979749d28) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x02bbe75ccfac8903cfb203d8aabe7973cf45c4dbb9505242cdf0db5ef5510661bd9fe29e45108a2ede89b6f91698313c038e354ee839e5b3d4e4cf89a5415c578395396a0fb3e170d5ebfe8443920ce5a237f317a7fde9750aeeaa6d995cec23) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x0b0076d6ef76e28344833ea759697fdd353b754a7207ae0c0c3ae5465150daa84bd888116b05ae14e922b469cbcda95106c1843e97627707d4ca3502fac07ca61de50f24118714ba6114f66bd7a2a3eb83f98bc92d88b6d9607159a57e8de5e4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x1928666d52b29e0355aba253192611a77283b6f028fe4b6d49fa88ad47237fad9228de9acd50c3f2b9f4885efc08673406a8e7278f95030bc2a1804fabb589643cfa58dbeec752c516c799e108c66b879d60ffabfd9fbf4f05c5e4974dd05de9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x16fde910b5f003049c80e1dc46475b65bcf2604b25344c6808b57ec25fd4352ee64b5bf5197ab9d8ec274cea8096d93b01c03ca9cf4a78b818ca4a08393963d9f86dfbac64e3881d1220241ecc7036d0906004a56841cc0336e24d9bec59a569) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x158edd43e9464a9e18497aca8ff36e247c1e155dc5eb233da377d2b908ad3a7bb60a30845c21f16b0d4965c301dc8c1e125faf41e0c80a9e5ebd98e0d88c3d6d0ac897dc6d37942a239ef970dcb4b455b1ce0471c047427fc46ef53ab061a96c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x0c3901b112af7f9797fc9cf71cfa90a7951c250b5dcfa235d2d6cfd9c416b1496d461d5e08645aae731d1759e255e72f0434edbfb503c50dbd75a13a6f50f35a653d6971335e4767cff0bf5a9f0e554253d821c6b0cf96a299f7d7f781586208) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x144e5918959eb7c28dc9117210e11ed52b7fe1aaec4655a9b41b87188595c2636c33adb7ee156a63ce1f40c7cbf4cf8712216b40366ebc2a1c5a284a5bff3804f9dc698756d92e10f5d72bb51150ab2dfe3a5ef09eb9cc699a8cc87d4534da85) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x04e38621e3c1a335f0a6b75b28fbb79fe08970315a5abf13a23d7670c0ea5c323f3d329ffddc197a9a5ec2bec93512a20687806bad5967587ece2bc63e23f29adb5902660a559ee706a3a6d587d035d184504a4b9e8a1dde7106e6d179d4b441) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0e69e0dab929d1f5ead3cebba16e0370f3ef18a72b80e2704dcff600d8e6c11b84d01c66ff7cec576ffaefc49a74aff00cb9d3d2a771815120ed332d888d444155234d0047af62b278ac6494b80753de716ecdabd4e77f8364feb65035545c6a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x174b443090acd24b63f00bd9ccfa4ca4f07c82ab80b3d02c8436e2bffdc6c8f6f058735ca48187fec910d53f3207c3d0050187821dd662d4f7680ce6eea608cb10164d3267ce217027dbdab08821e5905bbbbd30077a2812247ec251f61815f1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x02bbe75ccfac8903cfb203d8aabe7973cf45c4dbb9505242cdf0db5ef5510661bd9fe29e45108a2ede89b6f91698313c038e354ee839e5b3d4e4cf89a5415c578395396a0fb3e170d5ebfe8443920ce5a237f317a7fde9750aeeaa6d995cec23) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x0c29e29764d169fa7434f1cbe450f275cbafa5624a925093b56db64c5eb780993f74181407e521bcacf6c403966667aa11b9d76b42e519d2b094b1236875e1264354a7ba27ea590093b8cde9bce0835d84c98fb554d46590bb9ddbdaa3896d35) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x16fceeacbaa0201169b7cce9644b848249bd24e73d59df92315af1308718e771fa54708cab5c4509ee59c2688766039c091485a68d271b94f59014e25178102ca52416b4ebc9252f935b4dbadc44ec0858e3d6f20898b9fbfece25153c961163) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x19777d66b554119010e98ebe0a474ab68c58420f1d23f7b940e0b2d394c04f2655da207651543e883a8d545de911225f0af3262fc02c93b8fbebb5a04b5c1794e725c208ea53c96e51b42be25af28868c6951b267e699413afc30835d97a7891) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x09a09f7ba0b93860f16afc7f41a24eaf6f04be5c537a77acb31b2d1321ef90a3aafae9e3e4beaf9f9c3a8ea9b59204201105c73f6ca2b7414aae29417988c3862bb445ca8b7635d336c7caf560c58e42d76f99694bf8d2b3f9ec4004e2edee77) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x06d42ca0cf11ff62839ab18ca3df1170ab4029a1249c618ecc34f7856c549139d10e4242a85aa8c53679e35095d5c1c20a1d007b8cb6cc308834f9c953b18c62ff1709f12471893794145272930cba5ab4188f6950110dcce78b7aa11a77be9f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x05e73bd48731387f18857ac832af5b42779c0e8ee325af3637c28d311db1c208f46ccea104ab0d6d591f5430e8bd646c093718124d92beda4254f02a750b92f87af634e79983e893d3b931a27896a223fc6353a529226e87866eec80f4777666) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x05e5bd713e2b43295e9b50784b2416dc7431f057155560b6b260fc164676f5b3a2bfe84061a12ce5c31069aca695f1790354f267c52a1c3ba6601390e4436fd369194abeeb5f30cab899107cc830179480aff5d138d327a9fc1006a31837b0d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x03773e554ec120b47b48e37dab64fa0efc22d6a3320ca9aa75a9e0d2d52a4f15599fecd4c9e6a7615ef14647720defb516d0ba1fffb303896ceeb44111b78d64b966326f12cf69692f54796701c13dcd605c278cddc15289c9f9e4bec142b167) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x075d7888f555f9e7eac62ee7b07aa7f8ae5118ea5cbccbfe9a116ddb9ec21c7dad3c29a8c4ab1bc765652d96f171ef5103ca9d795022086b1faad91136592663b8fecb6ca32610c91dc4ef5b594d4e66e3fd737ab8091d917ca240ca4c5f14cf) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x189c9031a7c9fa23f5d733b19353bc60559c75d3008eeeb635d72225e6c3ab8a4e6adf19353f41eebb2fbd3b9aa6ebea18a9fcee2568b75d6c47fced67a88749f512592dd0b3490b31c8a9c6f8c3a89e66bb2436ecd30a4454659304b382bc16) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x0b0076d6ef76e28344833ea759697fdd353b754a7207ae0c0c3ae5465150daa84bd888116b05ae14e922b469cbcda95106c1843e97627707d4ca3502fac07ca61de50f24118714ba6114f66bd7a2a3eb83f98bc92d88b6d9607159a57e8de5e4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x16fceeacbaa0201169b7cce9644b848249bd24e73d59df92315af1308718e771fa54708cab5c4509ee59c2688766039c091485a68d271b94f59014e25178102ca52416b4ebc9252f935b4dbadc44ec0858e3d6f20898b9fbfece25153c961163) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x12daec20770efc59b6dfff9596fadbaceea1e53480256a98cdc5901222631a861a35681dc13e872aaaef3427cc1b9ca3011f543680da504e4aef1a948afe8f616429ac93d4ab594f52ab8ac894fb12bfd68c04592bb6b479966857c503ee9800) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x13009650f609243bda63f99d6b239e1867a1e97881f1a12006c7c40fa6e72ac84395968ac04374a781f916d9d7115f4a0e8baa9d7e11075cba1eb4fa63070f9f6f001424055f6fc107d4dc0d4b7add882281d5a6ae0a7d903927b79376de813f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x01010ce9f58f4893b1a4cc99ac6409e521864ac0c4c8fbef07864df6badb7bdee4bca2cda802a056337a327db27acceb0211256aa48401dd761706de9b9155515d170d93d400d9bc9753d042fd9aee4fa41fd060e9dc8d491f54acb34ebe8fec) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x084dd4489fa10e3470501ff825805ab41c7a889c1c4aa6acbe66795cb5b628a5c05065ca29fd6b8bfa04d62a0fe0b8170881da608bdc6089b8ae9de6fb4b996d68487476eeb8dad2606ef55ead4008548213c276c88fd1c7aff23cdbd69379f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x0e3314e3aaeece65f3a6d864ea763494a71df97b65606e347552a338b899011f3531173b4c0a37d215d5452eda39915117c0f4e520fb6dd38000e4b8cd19986e2af235409e25be2df2bd8024beff25499f4c90478eb8491346ee13afe078388b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x0a049b6b2bf86d778d6666ed819c3147f0aaaa28315e7b1e1b904bc12f4a8db4f50690d68bf2250c019449e15d126b9a080f2870588412063535032672fe879daa966e6e40294e9d29a6ce4a6b0be3f26b0a1d032d762a7762622bbe749726d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x0ea4ab0585e9d531d5a2affbb6e9d14da85dbea5e5ab78835961c699f5d4d1de5cb761d1cd07771cd8e56dcb977db07507ada85f8bab0a7aeedd85a61bd84bb505ed3c136c9f116cca8ca77a164502493599b00f3d0ad722a72c931f81ebedf1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x03269e2de673af093ae911c6ca36338d121a06034ae305569b43878a533206d713a15bfe25f2f69a356f023415799ed805669e11c9509a68fa752847a2691e8b66a8cd2acef8e9f8a421d56985fbc5610f625a926a3db22aa2f3b9598e3a5d4f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x07a125ff7730fbbb0a0b009ce801ceb5af3b26a398f92d666a6ba086589401d5c9757abaac52da844bca04ff1a06a6370192af3fd6f36c1da7ca65c3bbab1d7f94976041eda19e5c796a11118c7c53fa73829b1128d5ba0824e29deb6183c530) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x1928666d52b29e0355aba253192611a77283b6f028fe4b6d49fa88ad47237fad9228de9acd50c3f2b9f4885efc08673406a8e7278f95030bc2a1804fabb589643cfa58dbeec752c516c799e108c66b879d60ffabfd9fbf4f05c5e4974dd05de9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x19777d66b554119010e98ebe0a474ab68c58420f1d23f7b940e0b2d394c04f2655da207651543e883a8d545de911225f0af3262fc02c93b8fbebb5a04b5c1794e725c208ea53c96e51b42be25af28868c6951b267e699413afc30835d97a7891) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x13009650f609243bda63f99d6b239e1867a1e97881f1a12006c7c40fa6e72ac84395968ac04374a781f916d9d7115f4a0e8baa9d7e11075cba1eb4fa63070f9f6f001424055f6fc107d4dc0d4b7add882281d5a6ae0a7d903927b79376de813f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x060b5432626c3318aa1658c51be62d04f06c1f26184b384756644651c0a1c31a60c4b6de726b2fce757d3bda50b1225a0cdd5db334f75033fb58116c38d15005f1bdf988de6d3a9837e683623c5c1b751740158f44ab900d9ec227b9fc901f11) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x02bff2e129aae3d00ba3ba6906707816043e2ffec02acd47304b933713e545a350bbda8b54bd00960d804e0bdf6413b8181220b684d56b805cc6d5fa67b38d7b13618b813b0c9ed0d381101e4a02bc4268fe048f46c533217992169d8d6c6948) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x1821a5229b04055ca0a65a61fe9c5b62e2919fe89bad68f3521f82f2ece7d08481c1da0d3f3b78c7c38d16aeca5460690ec2fe6d1631f266187d7e252e9c1933cef416cfdf2fe353c19f3adfd5b175de090efe941bc6c7d31a92601a6c9762ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x05811adb3715612be05d3fec660098749e265527678f91ade2d28d74736f2d74c9e83634853749b43c0412b5c41f5512145396cb258907d9177c1c6618810e309015bc55dd1047589fe34b4bc54bae1b3745c5ea6466c11c611041934d62d91a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x07499c01c066da94c70ae0c883d59339098e2ae1c265020508486a04c17cdd59b6789dca1134297a2458307737cc65eb02bf943d425cc75ecce827e2953cda3bea4c96d87a2c4ae6f385024c824a24793bc644ead2a77179075b51db951d8692) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x18f82e4740dc20cc275cf1cc7160b13c62a4c757df9ad698e7f5df5fbc4a1118a9e453c92dd67472c3e5c61a3d19a5aa102691e5125cb9ddbfe8d13f9975c5299612e534f2a83c35aa7ceba964573fe371195e741d270392c2be713bd5329e30) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x145c9be227113316ac8e8512128619b41c45a63ab20edf62f53daa3d3ace9240174bbe9f46cbda102bef7b897568c0fa00f54d7771e7fb5e93c8c75b4576849fc1172351336db0dbe89a4cc1eec6847542ca8b1ce0da4e86d2f3e5d830674bf1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x04fb7ad2c096670cf3375d148b32c85ab1a6c4c6ebd35abd5ad2ae0a8d8d35561ca4a5d4b3fdd72f3184a25b1769058b0f4b9f0e50c0c70e2d0733ec6be54f7754fd134054d13aa67b5bb86a935b64d29b994340a5c8c2c34fcb6cd5ac3f2b80) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x16fde910b5f003049c80e1dc46475b65bcf2604b25344c6808b57ec25fd4352ee64b5bf5197ab9d8ec274cea8096d93b01c03ca9cf4a78b818ca4a08393963d9f86dfbac64e3881d1220241ecc7036d0906004a56841cc0336e24d9bec59a569) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x09a09f7ba0b93860f16afc7f41a24eaf6f04be5c537a77acb31b2d1321ef90a3aafae9e3e4beaf9f9c3a8ea9b59204201105c73f6ca2b7414aae29417988c3862bb445ca8b7635d336c7caf560c58e42d76f99694bf8d2b3f9ec4004e2edee77) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x01010ce9f58f4893b1a4cc99ac6409e521864ac0c4c8fbef07864df6badb7bdee4bca2cda802a056337a327db27acceb0211256aa48401dd761706de9b9155515d170d93d400d9bc9753d042fd9aee4fa41fd060e9dc8d491f54acb34ebe8fec) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x02bff2e129aae3d00ba3ba6906707816043e2ffec02acd47304b933713e545a350bbda8b54bd00960d804e0bdf6413b8181220b684d56b805cc6d5fa67b38d7b13618b813b0c9ed0d381101e4a02bc4268fe048f46c533217992169d8d6c6948) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x171dcc4142881ccba470029989ae3958da0be0249ba098f4118c512c219e9f1c6fe1b4e33b6a27cc0b9ca676747d469b06395941ba7dc2d3c5be2c0d785d13f60330cf06f0711091ec0409f6bbf0125efb70a2f67f4a4b51b2b32f1b6e5c7a0b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x0fa9c7b81257390a7476d09ecfdbb7e30d6950be653969b30dcfd7bf6e2bac21906292564a60aae113c1588e7021e0520d472fdac10ae6568cb57809b4412a181e9cc19eb48ab35ef2bdf738e682360d3f97e2c94229da4fea9a2f4eb0662de8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x02273bacef69b570c2cda2f45662739444e0e77d8fb8034af3fdb178e91f337b5972d6a4878cb9e02750313ce832f24502ecfca2d38e0190fe68fef1e7a45aa97f5f3e3e1404de411faa1cfa0b7debc435e2a3c3db0d047431ab49381af5c681) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x1233e8755ad7ef8c6fe37abd8322e15a34270e84a1931af3225f8ee1ed0761fbb9059662c3f86fd91f4fa3b0aea7e67e063ffb0d3ec9593365c7c16a3f1589a56de59200128f0f031a51165a6484f35a49dc8b9189bba6976079ce19e5e35404) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x0a86684fc72a4e2dee49a5ea383178e3a795bda53cd2af4cd428374c62ed64d403dd2d8b90a9739d682edf37b26f1021047a441cde9b6b3c1839f4b8f9c07a443ca35d44e878a04609dedb71eb056ae840862fe9e933fce4b894a96906aab066) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x029aaccc4cc78866eadd686825a2b48bf98b59f9c827c84d6a7663c20254f564c9bcd84bcad0ff1f6d0dcd96fa59ea0b0e47259745ba95228a9813f05942cbbc2186012eb63e23de41bbea46bc1cab64f80b9e1041de98f49c119df14f001522) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0b68fb08cb23c2087951474646488c4b8cc53e8b2355243955ba35ee10a154a41893978a43e25ebd19aa279b2374d0c10c15cb33448a95c9fcf9ed8171ebcbba030ac7d07ec5e391a937f3b0bd6f469175de8c13a964667d85cf6031ebe94b56) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x158edd43e9464a9e18497aca8ff36e247c1e155dc5eb233da377d2b908ad3a7bb60a30845c21f16b0d4965c301dc8c1e125faf41e0c80a9e5ebd98e0d88c3d6d0ac897dc6d37942a239ef970dcb4b455b1ce0471c047427fc46ef53ab061a96c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x06d42ca0cf11ff62839ab18ca3df1170ab4029a1249c618ecc34f7856c549139d10e4242a85aa8c53679e35095d5c1c20a1d007b8cb6cc308834f9c953b18c62ff1709f12471893794145272930cba5ab4188f6950110dcce78b7aa11a77be9f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x084dd4489fa10e3470501ff825805ab41c7a889c1c4aa6acbe66795cb5b628a5c05065ca29fd6b8bfa04d62a0fe0b8170881da608bdc6089b8ae9de6fb4b996d68487476eeb8dad2606ef55ead4008548213c276c88fd1c7aff23cdbd69379f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x1821a5229b04055ca0a65a61fe9c5b62e2919fe89bad68f3521f82f2ece7d08481c1da0d3f3b78c7c38d16aeca5460690ec2fe6d1631f266187d7e252e9c1933cef416cfdf2fe353c19f3adfd5b175de090efe941bc6c7d31a92601a6c9762ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x0fa9c7b81257390a7476d09ecfdbb7e30d6950be653969b30dcfd7bf6e2bac21906292564a60aae113c1588e7021e0520d472fdac10ae6568cb57809b4412a181e9cc19eb48ab35ef2bdf738e682360d3f97e2c94229da4fea9a2f4eb0662de8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x046a2790add475f1fe065066d88b478ea5d288ec4175776bffc94a2ed41d749678d54ac91b6e152e207d03eefabd0569029f74862ff0c85d4e7871b32e7b08701e4f0961e4ab0cffffa52895ade51062358e8ab8f78137631eeb17d52a3d1787) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x01efa5d893d4df2decb69d582a64b701736f942670ee214bcd798c2ace462d3423c4cc5668575beb0348ed27e904740f12c381599e9b0c38e56e97dadf861ca1e298d230a059365b30df2e49903131b1176a914a793c5a957675acd9b5abec9a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x047b382113356f5bf7585f739104668f89d0cdedb89266c151aed5367a8f322c6e9912ff8aa653574c1e406dcaebe5bd0f6bb00734420c448042fb5c13051159614919578383329ff0696ac565562fdb9dc5854122ef0036561f67721b3c0ed3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x0ffc615d86d835dddfce2847aefa2b9356560d0c13df0ca80902fd3000a2ed6857f784b26143d2e425d959801346633b0a9e1097650528b9cf99d91adeb41957560426cc7adab6e45db39d5791c35c6373aa333772943efc9363661abc2c8315) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0f2239a8444b783758f3e5d7873f05b3c939315918986421a02241a2ba2fb8e7de4c193483f9bb9989e328f3e4aa026f0a1f359cba3e91c5978b66e4c0ca02e5c6966e5173aeb942211351ea8ab59b73b9da7e49b9ff602299e3553d2e6024f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x045dba3dc8f9e481ce42fce5a8f07501d1faada257439f987273acabc0d3aed00e4cc3948fae082ed24cba5b12b54e5f0d55da0aec1136a24464a5f8f1ac8d58eb893ba95131f2fce03bcb35fcff40993f48b5aad6a80aabeaf0b9d8d7d957ae) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x0c3901b112af7f9797fc9cf71cfa90a7951c250b5dcfa235d2d6cfd9c416b1496d461d5e08645aae731d1759e255e72f0434edbfb503c50dbd75a13a6f50f35a653d6971335e4767cff0bf5a9f0e554253d821c6b0cf96a299f7d7f781586208) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x05e73bd48731387f18857ac832af5b42779c0e8ee325af3637c28d311db1c208f46ccea104ab0d6d591f5430e8bd646c093718124d92beda4254f02a750b92f87af634e79983e893d3b931a27896a223fc6353a529226e87866eec80f4777666) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x0e3314e3aaeece65f3a6d864ea763494a71df97b65606e347552a338b899011f3531173b4c0a37d215d5452eda39915117c0f4e520fb6dd38000e4b8cd19986e2af235409e25be2df2bd8024beff25499f4c90478eb8491346ee13afe078388b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x05811adb3715612be05d3fec660098749e265527678f91ade2d28d74736f2d74c9e83634853749b43c0412b5c41f5512145396cb258907d9177c1c6618810e309015bc55dd1047589fe34b4bc54bae1b3745c5ea6466c11c611041934d62d91a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x02273bacef69b570c2cda2f45662739444e0e77d8fb8034af3fdb178e91f337b5972d6a4878cb9e02750313ce832f24502ecfca2d38e0190fe68fef1e7a45aa97f5f3e3e1404de411faa1cfa0b7debc435e2a3c3db0d047431ab49381af5c681) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x01efa5d893d4df2decb69d582a64b701736f942670ee214bcd798c2ace462d3423c4cc5668575beb0348ed27e904740f12c381599e9b0c38e56e97dadf861ca1e298d230a059365b30df2e49903131b1176a914a793c5a957675acd9b5abec9a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x052472b1ea65d3e7936a4bb032cbd9e5119def59e5e84225746f45353f63cb6192e03d5891704672cbe064b03934f01e19ada310f6ad2b47103929fb6220bd22fd183ab58234505f8deed6f282b2a0570fa2361524048acf6c9291af0826c827) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x063129a2aaec9991ae5bf8324bb697ca1c490ce4fdfcd167a760e3088156379b4a9cfbb422707c52d6cc091501f082ab0e106951f452f0302bfcee0158da135ab5e5bd773910b0202d6d062ce92577dbe978603c574afbf462b196350a6b194a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x1025135f27293afbf772034aca006b89058660521923695d76a4ff1e5b3d54e0f7bde8b9b21900351cfc8e713492dbac124b0736330a323f446cce047efbc42cf5d46dc9b6dfded90161667b69b14f33b42eaacce04e03a1597e890aa29feb9e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x171b12075ea694d62f6100b26b0f22d72ace085eceee2d60e449d18f57e639e73c950b04c995ee9abec90184062071a60d3603eca9e4e216de19d91786ece6ec2669242ee9178b4cef7c0bafb14f16f2a78323f1cc51b91a9eade8cefaf59ffc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0bacdbd680fd96840607b2df89d3ee01def1d51b91a106a99d106b1538b37f62c6c8333919fb00df82cfba4c6469201905010561f08cbc732763f300a4c461b6938224870fc97eb1bebbdbb63f3969cd5fb4b4bc1fc300203749433e5ba71850) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x144e5918959eb7c28dc9117210e11ed52b7fe1aaec4655a9b41b87188595c2636c33adb7ee156a63ce1f40c7cbf4cf8712216b40366ebc2a1c5a284a5bff3804f9dc698756d92e10f5d72bb51150ab2dfe3a5ef09eb9cc699a8cc87d4534da85) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x05e5bd713e2b43295e9b50784b2416dc7431f057155560b6b260fc164676f5b3a2bfe84061a12ce5c31069aca695f1790354f267c52a1c3ba6601390e4436fd369194abeeb5f30cab899107cc830179480aff5d138d327a9fc1006a31837b0d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x0a049b6b2bf86d778d6666ed819c3147f0aaaa28315e7b1e1b904bc12f4a8db4f50690d68bf2250c019449e15d126b9a080f2870588412063535032672fe879daa966e6e40294e9d29a6ce4a6b0be3f26b0a1d032d762a7762622bbe749726d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x07499c01c066da94c70ae0c883d59339098e2ae1c265020508486a04c17cdd59b6789dca1134297a2458307737cc65eb02bf943d425cc75ecce827e2953cda3bea4c96d87a2c4ae6f385024c824a24793bc644ead2a77179075b51db951d8692) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x1233e8755ad7ef8c6fe37abd8322e15a34270e84a1931af3225f8ee1ed0761fbb9059662c3f86fd91f4fa3b0aea7e67e063ffb0d3ec9593365c7c16a3f1589a56de59200128f0f031a51165a6484f35a49dc8b9189bba6976079ce19e5e35404) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x047b382113356f5bf7585f739104668f89d0cdedb89266c151aed5367a8f322c6e9912ff8aa653574c1e406dcaebe5bd0f6bb00734420c448042fb5c13051159614919578383329ff0696ac565562fdb9dc5854122ef0036561f67721b3c0ed3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x063129a2aaec9991ae5bf8324bb697ca1c490ce4fdfcd167a760e3088156379b4a9cfbb422707c52d6cc091501f082ab0e106951f452f0302bfcee0158da135ab5e5bd773910b0202d6d062ce92577dbe978603c574afbf462b196350a6b194a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x156836c5f3a270fbfc71786441a470a2737aab92b3b6b3027607865cefa3d10c2a5ee366ec1db598e563eca041ebec621412a99776342cd4defb3673f2b5fa0d3064255d74146c7455e55d9a6e14198125b95c4cf7cc0dfbff77c39889c610f1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x176f5f1f57288e4b133cbff5611b8028b46460f2084e004ea6bf1c3e33911cd2c020e1f7389a99e8f4db30e881d8f5e00773aadfff8429fd161c285977090b5005e136748f27b465ae89e26295906df33227395fad4d99b466c7141e94e8c293) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x02c7a78eb4807b538c0014ec5ba44d58780d6e700ea54ae45b3866dff8c4aa668f845ad91f6a16720d865032b5c71add19843b1f0169a987c279f4f3e3955b4c4349227d33981748b28f604a8aed9471fd91272a157b55b7ee71ec23ce6db02d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0153465b9dc8227efd8f18adce0ba1eabc17cffd7ed627456c537a582fead8463806ac459981a96bd1cb99ba58c2ebec1835a685a9a27928162d57f51e2b52c166c640bb9bd2e72c9a0033d4e2cb016d041b1b1304ed40cdcad66b3d963e5aeb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x04e38621e3c1a335f0a6b75b28fbb79fe08970315a5abf13a23d7670c0ea5c323f3d329ffddc197a9a5ec2bec93512a20687806bad5967587ece2bc63e23f29adb5902660a559ee706a3a6d587d035d184504a4b9e8a1dde7106e6d179d4b441) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x03773e554ec120b47b48e37dab64fa0efc22d6a3320ca9aa75a9e0d2d52a4f15599fecd4c9e6a7615ef14647720defb516d0ba1fffb303896ceeb44111b78d64b966326f12cf69692f54796701c13dcd605c278cddc15289c9f9e4bec142b167) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x0ea4ab0585e9d531d5a2affbb6e9d14da85dbea5e5ab78835961c699f5d4d1de5cb761d1cd07771cd8e56dcb977db07507ada85f8bab0a7aeedd85a61bd84bb505ed3c136c9f116cca8ca77a164502493599b00f3d0ad722a72c931f81ebedf1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x18f82e4740dc20cc275cf1cc7160b13c62a4c757df9ad698e7f5df5fbc4a1118a9e453c92dd67472c3e5c61a3d19a5aa102691e5125cb9ddbfe8d13f9975c5299612e534f2a83c35aa7ceba964573fe371195e741d270392c2be713bd5329e30) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x0a86684fc72a4e2dee49a5ea383178e3a795bda53cd2af4cd428374c62ed64d403dd2d8b90a9739d682edf37b26f1021047a441cde9b6b3c1839f4b8f9c07a443ca35d44e878a04609dedb71eb056ae840862fe9e933fce4b894a96906aab066) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x0ffc615d86d835dddfce2847aefa2b9356560d0c13df0ca80902fd3000a2ed6857f784b26143d2e425d959801346633b0a9e1097650528b9cf99d91adeb41957560426cc7adab6e45db39d5791c35c6373aa333772943efc9363661abc2c8315) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x1025135f27293afbf772034aca006b89058660521923695d76a4ff1e5b3d54e0f7bde8b9b21900351cfc8e713492dbac124b0736330a323f446cce047efbc42cf5d46dc9b6dfded90161667b69b14f33b42eaacce04e03a1597e890aa29feb9e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x176f5f1f57288e4b133cbff5611b8028b46460f2084e004ea6bf1c3e33911cd2c020e1f7389a99e8f4db30e881d8f5e00773aadfff8429fd161c285977090b5005e136748f27b465ae89e26295906df33227395fad4d99b466c7141e94e8c293) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x04c868cda881721aa9476ef08b428e4c9cb3167d54dbcb34313df677ede9d7632a4dc56616f2b4d7283e6004972dcaa11957f89ed9bceeac2e9db5e2ca282e342086214f54d7faf2c3bd7d198ffd98bd95f2e713d6f95d2bbea40404312020ac) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0a0406a6dfca19affbf8daf605873eddab784824015f9e4689e73fa86daa39771d3a4610f9df95fa322f55b322344e930dbf2d00f047bad0aa8d3054bbd000cc5ebef0a2843e3f5ff555042c232463f2dbd888f5c113b89fd378445b57f3a898) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0903f27e56361a1bd0e8e4badd679acaac4af9fa036129e8a8091a2e897bb2ed4d5de5100a52eca069f124be2ea964ec01bd4d07f84e5faf4fcc6fb055082041b6f82c416a4d469f9ce5b4a8d51b85365d871f967e221dfcb32bdb703175c2df) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x0e69e0dab929d1f5ead3cebba16e0370f3ef18a72b80e2704dcff600d8e6c11b84d01c66ff7cec576ffaefc49a74aff00cb9d3d2a771815120ed332d888d444155234d0047af62b278ac6494b80753de716ecdabd4e77f8364feb65035545c6a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x075d7888f555f9e7eac62ee7b07aa7f8ae5118ea5cbccbfe9a116ddb9ec21c7dad3c29a8c4ab1bc765652d96f171ef5103ca9d795022086b1faad91136592663b8fecb6ca32610c91dc4ef5b594d4e66e3fd737ab8091d917ca240ca4c5f14cf) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x03269e2de673af093ae911c6ca36338d121a06034ae305569b43878a533206d713a15bfe25f2f69a356f023415799ed805669e11c9509a68fa752847a2691e8b66a8cd2acef8e9f8a421d56985fbc5610f625a926a3db22aa2f3b9598e3a5d4f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x145c9be227113316ac8e8512128619b41c45a63ab20edf62f53daa3d3ace9240174bbe9f46cbda102bef7b897568c0fa00f54d7771e7fb5e93c8c75b4576849fc1172351336db0dbe89a4cc1eec6847542ca8b1ce0da4e86d2f3e5d830674bf1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x029aaccc4cc78866eadd686825a2b48bf98b59f9c827c84d6a7663c20254f564c9bcd84bcad0ff1f6d0dcd96fa59ea0b0e47259745ba95228a9813f05942cbbc2186012eb63e23de41bbea46bc1cab64f80b9e1041de98f49c119df14f001522) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x0f2239a8444b783758f3e5d7873f05b3c939315918986421a02241a2ba2fb8e7de4c193483f9bb9989e328f3e4aa026f0a1f359cba3e91c5978b66e4c0ca02e5c6966e5173aeb942211351ea8ab59b73b9da7e49b9ff602299e3553d2e6024f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x171b12075ea694d62f6100b26b0f22d72ace085eceee2d60e449d18f57e639e73c950b04c995ee9abec90184062071a60d3603eca9e4e216de19d91786ece6ec2669242ee9178b4cef7c0bafb14f16f2a78323f1cc51b91a9eade8cefaf59ffc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x02c7a78eb4807b538c0014ec5ba44d58780d6e700ea54ae45b3866dff8c4aa668f845ad91f6a16720d865032b5c71add19843b1f0169a987c279f4f3e3955b4c4349227d33981748b28f604a8aed9471fd91272a157b55b7ee71ec23ce6db02d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x0a0406a6dfca19affbf8daf605873eddab784824015f9e4689e73fa86daa39771d3a4610f9df95fa322f55b322344e930dbf2d00f047bad0aa8d3054bbd000cc5ebef0a2843e3f5ff555042c232463f2dbd888f5c113b89fd378445b57f3a898) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0e0d8dc48ca8e5eb401a1e77dac46466f9795354ec6ae59119b8fb561c5e8c80031bf66404c16d370ae263eee2bfffb80ad0e49c0deffe979877451138d54d4846c363c62391da88c37e4cc4304e8f00bc75b0a50d5d4f2d19c129570d4cd709) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0ff16e5c2228f7d1ba79342eb5ce926a1c9172516c29618bf5067d9babe822c649f5d0af16dde7f58856f79fe8c0642c0276e6f9e29896828296e8084cdcf9520d766c96c985351cc692c5a680cb3f2bdbd798830bd059a9a40ca35b2bc42bcc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1' -storage - (Some 0x174b443090acd24b63f00bd9ccfa4ca4f07c82ab80b3d02c8436e2bffdc6c8f6f058735ca48187fec910d53f3207c3d0050187821dd662d4f7680ce6eea608cb10164d3267ce217027dbdab08821e5905bbbbd30077a2812247ec251f61815f1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab' -storage - (Some 0x189c9031a7c9fa23f5d733b19353bc60559c75d3008eeeb635d72225e6c3ab8a4e6adf19353f41eebb2fbd3b9aa6ebea18a9fcee2568b75d6c47fced67a88749f512592dd0b3490b31c8a9c6f8c3a89e66bb2436ecd30a4454659304b382bc16) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87' -storage - (Some 0x07a125ff7730fbbb0a0b009ce801ceb5af3b26a398f92d666a6ba086589401d5c9757abaac52da844bca04ff1a06a6370192af3fd6f36c1da7ca65c3bbab1d7f94976041eda19e5c796a11118c7c53fa73829b1128d5ba0824e29deb6183c530) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9' -storage - (Some 0x04fb7ad2c096670cf3375d148b32c85ab1a6c4c6ebd35abd5ad2ae0a8d8d35561ca4a5d4b3fdd72f3184a25b1769058b0f4b9f0e50c0c70e2d0733ec6be54f7754fd134054d13aa67b5bb86a935b64d29b994340a5c8c2c34fcb6cd5ac3f2b80) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4' -storage - (Some 0x0b68fb08cb23c2087951474646488c4b8cc53e8b2355243955ba35ee10a154a41893978a43e25ebd19aa279b2374d0c10c15cb33448a95c9fcf9ed8171ebcbba030ac7d07ec5e391a937f3b0bd6f469175de8c13a964667d85cf6031ebe94b56) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89' -storage - (Some 0x045dba3dc8f9e481ce42fce5a8f07501d1faada257439f987273acabc0d3aed00e4cc3948fae082ed24cba5b12b54e5f0d55da0aec1136a24464a5f8f1ac8d58eb893ba95131f2fce03bcb35fcff40993f48b5aad6a80aabeaf0b9d8d7d957ae) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5' -storage - (Some 0x0bacdbd680fd96840607b2df89d3ee01def1d51b91a106a99d106b1538b37f62c6c8333919fb00df82cfba4c6469201905010561f08cbc732763f300a4c461b6938224870fc97eb1bebbdbb63f3969cd5fb4b4bc1fc300203749433e5ba71850) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42' -storage - (Some 0x0153465b9dc8227efd8f18adce0ba1eabc17cffd7ed627456c537a582fead8463806ac459981a96bd1cb99ba58c2ebec1835a685a9a27928162d57f51e2b52c166c640bb9bd2e72c9a0033d4e2cb016d041b1b1304ed40cdcad66b3d963e5aeb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60' -storage - (Some 0x0903f27e56361a1bd0e8e4badd679acaac4af9fa036129e8a8091a2e897bb2ed4d5de5100a52eca069f124be2ea964ec01bd4d07f84e5faf4fcc6fb055082041b6f82c416a4d469f9ce5b4a8d51b85365d871f967e221dfcb32bdb703175c2df) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c' -storage - (Some 0x0ff16e5c2228f7d1ba79342eb5ce926a1c9172516c29618bf5067d9babe822c649f5d0af16dde7f58856f79fe8c0642c0276e6f9e29896828296e8084cdcf9520d766c96c985351cc692c5a680cb3f2bdbd798830bd059a9a40ca35b2bc42bcc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb' -storage - (Some 0x0b0e66847e9e898a1ce59e952e7432cc12ec35a2c2f833564f60a005d213e32f93ae2049240d9ea4cf35b57f3226be0f052607166cb214d9cdb837fccc2e1c5f0b6dad8e6d8e2dd17128b3689aa3121dd455cdf228898f9570a82f6773574a79) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- mul.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- mul.out deleted file mode 100644 index 57ca0eae08ae..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- mul.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0d6e26a792fa06ca00d9b8de7b764194a035b75f8e55da4fe2c7c8df6c732e61f1cd4a5453ff19f48eaf7d8d35945a8a01153bf80f1924e3419b5b5426d56f18de4ee561b53b83a548550db77a6110bcef17edca9bb63473611bc77fc7a5d5eb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x17fe2df3460e58f64423b86a85f51080ddda61f77fa98a4205faae453f9752d45a8d8cdd3e2c2b55975e1907c7ad32bc0922f1eb6c45c9d7520ccde588959b79eaaf70b393d780698cde0a6fdf6ca048cebe0f0fbc5f5ab801f13e8cee452c64) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x0b214a8a80d9907dc8673387c7ce8580236b7dba1acc6dac23397df4086ac627fcd9e1e6dc6d0f35005a254d2d5e596316793aa0ce436a371fe4e2ba29b8030c589334a580ef0b64a4b62b894105486b12b2a2ebd3e12e834157b6eb766a1a46) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x043f37fa78a29f961f94ec41b7106e72c8bd964d987fe98e3b923af78e82eae131cc1384cc1ab5b1297050e4c8f5981918ceb0c411187ec8dac82ac65d5f857b806025be878d67c68a3f7f577a6d67ba86a97f46af156302159623eb943d88dd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x080a6002efcceeb454fefba8de269a0dcddaf1a31277b9401c394c27bf93f6cee5c3a61aa51249366df85e142691cc360222dff9b4cc37bb26bda84a0b07f57a87ff916a1684fe21aedf35361c2e2d4027438eaf5124cf0a65316b311fb9daa7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x08754c98e4c7db757b21e834f4796d2cdbc5e4def2b810b61950c8de91c952ebef5b4fc24c24eaaba16e905acc610f360cba7430aea81354d2b199de002bff0505483967c4d89119e58a417374e80253a09b64dd8e5866a39310d5c6c458f8b8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x04b65648dd092c99073e6de155f71684a774baad9dac389386532de497f215a58ac1fe2f6a47ee9be3b7487eec32b98807a5369fd1c9c9f562cd815174cc29ddf313dd016d29e33e8e4fbb99c6090eb487c7a4a09bd2d68262f517fefd89feab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x0ee94578ebc9106e3e193d6d43803d53206baf8467a9c387a122d67364c06e6b386bd3d4a519e436811dea5335f001ae03b0ca8045c3e9877f522f6c72669b7a5dce3954941dfcde3ad65add4b32ed285bc7762dc81cb4aa8dd30466e8e58cdd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x058d3f9138e02d209f1558c2dfe2461ea55dd3173cb680befe0b27c6ec0809393e5625d5d10edc54f8765d657fd960cd0a511c9ec52fd74f583dae9a45b19bedd2f0c9ce75315622cee29357bccd2bdfc986603691117c9d724ce0205389303c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x0c972ba34b8c6ef2ec4773c0514d51da1e434b56b137895aec2903dbd39e1f46795578a8761474852689ef734d963a3a0c1f7a974a05641e95fb07a64105c403fca42032a04a0e86595f28093322f0452c11b683a0d86f1189414fd8422bb7f2) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x01209e158bc71f282c096757285359a9978c143b02d0a29675168d2b86b3229a8eb9c213c59793fe85d861df05eedbe001526419a19110e7d15fd47e6065534566cebdc72a737d67d6e10773383541d1f30cdf07c00b3eedaaf4648896ed9321) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x0efdbcf90456b6111b67d48bb66c384eae0e3ecf9ba0d9a232d26b7615bb3bb97e14d4476a46e34f34de2325094e61e805cdd9f46928c868b92c0f7e8b1bee1f026d311363e7bd8cd52aed9c5fd94049bc515a9fc689a60b3c603bdcacbc2757) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x16bfe181c59d68df36da9ecb00873116b68564b6dc4bb85f9de517ce67200edcbf4d702750a9f1922c006499fcd101b103e690bbaf48b60a6c2ccd745e2218f1378d11a9b05bc8cbab4e9ebce6efdf4a1f01e7a83c40ae65d5c0688fb4c5f929) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x0cd9ee919f76512305edd0dc3a4e8b6836d128f4d057a6ad043eb1009d8363e4d3d114f91722441871bb03b4436b9db30a6435fe87a9a201d395a339e09d5aeaf7343023d897828c54d1c6f523b17e11a0b7225960886fe0a72ae28ac542b826) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x10d5f9be440dbab37077bd4a47eac753a08b0e7259378586c5a767e9f60db07ad0377e4303b765c1264de0d920c9e1c60203123943e2292b7fd772d97b6bfc87f13b3118f23e5a73eee0c013af220293c5672487d8a420dad371425778ab77f5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x0bd654c304dcef58af952ca2facb26a6edd39299c8e6e84c2183dccd1983d54c42527e0775bdf0c41a2692f7ee2956ff1414dcc51826e1a30784e97dc2a6c22fa5a4613018675367f94ec38f5c0918b1a3497496257d8498c9d059dd78ea0f25) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x0063c796eff234d7868560f197512cfe7573c699e56dee2e45cc8cb066764879390f45fb629ebf867b050c0533c3c78604377f82dc13589f87a5b50e386c24e0a43ea56ce66f18482ed99b36c4b19751907d3388f9868d9bc7df0a505c4eb717) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x0af79cae8576b4995da38e6a8df9227f5415802db3f8aa4c3974030454bcce23328c0a5a255a6276b5fa60fd14757673153047aaf80c925bb11d252ee92d3336b610e12a1a9c5501cd3371d9f7d686c984b22c87b85567983d742b2675fbadd3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x19c0b6b19c11fa412a86d88eca2816ba25670d893c135e0ee5989656522af100691986f0060b64d0fbaad9638679de5b107ebc992deef3e31f34b16eb3e44c110d224ede95a2917b70fef143105b5ad7f938c0b97921b2e118aaf36021d709d9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x05d46d0fe823a21ad3b92c3deddc6cee80b776999e443a87849cab0431d66c092b64555ccdad0be84c59c7750136bae1193ec841f45f830f5bab5bc5d5014480c769499886a248b96fc8c9f52069b7541b8325d54a673c1dcdaf987cc76c2986) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0581a60e8bd8b0f1afa867dbe6d131da6b717b349cecfbdeef91389c897fd516e48dfde89a3c27e411dc0648a684ee0705d00bc33d960ac54d895e80131633ec084a47ada7c3dc1e67b6bd67156facc995680292c2a3f941c36fb9bfe61feb35) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x16358e52d519a86b053da1fe72a1e883c5fccea9c4664ce7c0328f6a7026a8111707dcf0e88ee80b2cca22d411a7332812ba25b327c899540069136c45f2682fc27e5b1554b93a52c1740a154e93d7fc70f736515cb88c825f4cf7d2faa278ae) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x109f769c6c1db02368152922c9a6a8485c87bb9caf77b6100a4f1f5793d3c5e626b8c55ab3893c1022916ed59f401a39033697f5dd1db013bbc7ccd6e03298e87e2875951fcf420ee945b6079f8436f9f244f57f546a0e5f7778a9b6cbe00f22) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x191154d5a2eb393270aac8e4b85f6b28d6e2d0e8a714f36415192387826c7792a1f852cf268c811c65826120901a9196083f3e305a0fa97e67ce8ddad76603ee1ff8a8aaba6eff4058ec4e848860321818cbf190f52f4dddef254cf0c9e3f9d9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x02cf1bdcfc6d26f1fed78c7fae531e43de9e623c13d418114dd9725607d642f5f26fadbf9d355ca47128fee32a82eb2c092382870014bd64bfea089f0f6223a85086f87732c01d38d0421be72da85c72568e4fd7f8e7fcc349acceac725d767e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x093578079471563622bc948bf363cba956e331d785c606fdf76ff09c8720befa99e7a6dd2b01133ca1107845aa9ecb4912166e035e664963740f46c3568e611801a8e5819881f4bda8790da9c69dcd02254f669973c9fd67802ef6ed07d232a3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x0825703afe4debd2b09208272077e0b301d3a2f10cf436657107ee668d481a441c037d1ba3f1301bc6477433c0079784037d217fc5ebd4f315c615716d6845c2c91002c3170b55f8c20616d6bdc310fd2936f2e50da93fe880eeeca93ea86d2f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x03cb48d18e9adb6b3d3dc449110dbea4629d40523e6200d4c9332f092cc594bd6591cfcf71ff88e7ad722d60656e56e60f8c17788b46d9fd6bc6105115896170d7741b5fe14805325e1561693ee2a4784d48db858e0aafcee62b921f385abb2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x0157d419405ecca995ed95d32f371bdb386bf3058f71fc6b950175274dfacc2538ba0fd8b0fb0424911cc5963fcd4001144eb623857acef3621b1e6ec0f5a8eb165b699c8d8b9e3e6f38fa6da6b3be44c9b5c741e1969a70703292aca20516f0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x04c34b7695ba3c6a364c0f966808f0fbbd8bdeee360dbaa0edba5f7669bc680d002fea0c7ca791bd9c993ba068bb9d2410dd522d6afe1938b9bf0deabf7df30c4e30f7bf1b2691e062a8636f0cb61cbc7f666429785d59119c5c41df18613ecd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0412203264d756bf628d76d1b477493facc1c90068d318fbf33949903de2eca11f6ed5cb3203faebef94cfff11f357471815e371eb8552dee3f38fab27c7aa0e88dbedc8bb7319c02d155686ba73ecb905440508b5fc7889c755e85bcbce36b3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x09fa323fe1c580c8d71525094cf8cb8f7b55a73e0368b9c969e11e2a134c2ad7105b9372fe54748f090f2d9699a08bd80ec04e61d1f6e61d7e4db2a71fb882d9021b377842b7c23ae501b812df1a0ebe39727b98027da5c911574f34492a9502) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x0815e357c2bc69e70d4c07c46a2e9d193e5ae458f756106b8c47b9d300838918377c592bec0589a76095f3147ac669f00df6c2ba7d1e05626802726a8ccb0be4f1a824ae5ace601ee827fbfb2f01cc476129928b42fa98a6a417de56dc66cba0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x12b3f0225229b39345c7be73973387f2d2f2ca09fe46365b01da1d37e67c8bd90e652fa5bdc155fe9689396f1a4186030484ba1bdcbf27188ceca03bdd300deb000c0b1babc7f598c724678742d7ec38fbe0a8919fa370515db41ab306dcffed) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x06e459cb9410459386c79b2fbc3629937e84c031c6204987b75736a05069a1f7740ea59ecd874a44903d151bd2f101080bcde69f48c6fcde9d38070fabc3ad3d9f6b66397fc5c59e2906e4d5a987f19391ba1a5b612ce442bc33fd141ffbce2e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x13a643311835dab38e1324b293645b7f5c02d65851d818e869fc82dee998a28ee22b24c96355c4d957dde9b86814d0ed17dad0a4a74fb5cf26bd18e409dbf78c83edabe84ce7cfbef4b1f626f31ef0458e3e1a36e3cdebe0c09e102a4b24a644) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x06ed9541af33151e350f48b4935c5337561511bd4d6cbef143d81233df830d2df6d2397cb926ece52ba657a25c4eaeb00d7c8a9ae83d4cc786369a5c9ae73c0521f21f424563977f78b9de39aba60d8ab6420247227c5ae374ec100076543878) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x0842d0104ec53b7923bb1a74207f4a11d989dc8fc6c466961e94f9ac0fd5a2cdf69a637ca8e425115d9963ca7d66938500ea145353b6382fbbbe69ae3d09f25e907bf58d892211ab0bd2713cb68a1a3ec72ad8e54daf893ca8646a8745142fb7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x007fb59ca921180a904ef6b65a48ea3a04344dc5bff73323bd10fb3c7dea69ed5525be5812986ca025ac3e11c96dc4a1198790659672a962d70bd1996efb7769f36fbe4ed9cf55d071427666f2c5d73655f193f20be7801cbe2ef168d497a58c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x02cb9272e282673ccdf8a17e77f9e62919e40670f9844f0a85e7169a431f16341fcca482d26b0bb4b3dd92815c2e725f13f36f55336203e46335e2645f80fe8d9cde1bf5004757ea94baf2a97f548bf851433c0ede5f6354d26d7dfaecf791b1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0ac32d3741b3c21b18ecfede1bc11830df9091e06dc97e01a81c423b26b092dfcaefafe329ae3e372953f977c43c47d6022dedceea66a9b7ddf2b97f271840295d7847fa32e2c71b4a49efc82a474dc7684e7ef2880cbb5f9256e9ef03606562) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x0036c4d013887bc6a143e179677ff8f26bcb79ba0988e12f24846ecf188b65c5718e11c8de2b6226d008d4624284cc3b151c0e5c1e1d54ef2dc56370c82f6b849938b47609f1816ff3a3cf798f8eeb0d00b43539f8d280cbe79f3ecdf33eb0a3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x19c226a9dcbe4364ff0e70814ce83d1babf4cb0425a6d483717fae66859e0341e856a09a14c6bad075d3b523bce47666133aac0bd2ea22d48294764c254b7b4812c11044138e958cc050789b12255a0f28ef5d4a0990d57006d48448e6b9b6a2) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x0f703f711e1d82ba20be14d2f38c2e7c16986c917bcfdd733781e84b0f4acec21ac735420f07d57afb19c815f700395b0699f961928f57ff8f1ee79612ec447f0a67df0b12a73bc7c5c99d8fadb59dd2e46dbf24853b2d2b697ca02da94616e3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x0e49831f67b497f143e2084ba6e1c2f68f959e8d39201a5779b6549cb96487f9ecdd21fe21f11202ca419472b526f14e0d45f58a0c3a81a2c549ba7753898f080c3c763d72421189403742c4ed6c4ab588672bdb6f491b4b16538196a6869f01) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x0e929417f5b4f243f601edef1957f6376188c0e79d4948b3f3b3f8364ca1666f34fcc51d8be3661eb6e835abe8b1896d19d3e29517f6da19cf29ee2655da501d1427a3e4a2ca30a291faae2610a0467c7de31fd16c197e8458f7cc5047a0a385) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x08781f6ddc3dce9c405c283c560ad4ca580fdd754c0041e226272084d4f1d99b54e70c9a31706e0f5af360a4bcfb261c05fe250228db136c26ae15e5037cbd6016398e0a6e06e1494d37fff31bde2e7613c3a68f487a2d2af80cd65d9a4aa984) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x115c25600a2070d2427243bcdb7dd830e71cdf857fc9e5cbe1d68c953cb958313525764e7dc8066b68eca6733f1a883a18c59e9c634c3b96c9f2bf7fee37d051921a581f5e3df22a1342b67c312c7d65c17b2fa9fc108a80624b0b43358335f5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x1003a80b03182c8f2818ad1afbb6d6b96d6e54c2caccc065270c9f47ce5d31776356404a9fcdd8f9a7231facfada2ad00e543844307834564371126b701746614751a3d16f5accb4c95c888ff1978a12f3572afe2240367e36c1dce9ea63cac9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x06bf7ffa94226e2153205e53651de677bee80c436071611d20f1a9693f73449b97b72536a0e268e3173a24817232ab8806ebe9cace12d9b6151133b6d0808cd53ae57465159b0b2960a59e38080ca1ba23971455b87f7c8fb85e801baa3a31c6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0ddbdcd86ccec51f96b0a57375d75ca04645c81ac28d1bce2527163b8cac1a61741a733af4760e79cc22b243d4537ad919cbaf2df20a4b2855fba6a11385ac6592ad2b75688fbf954a32987654d2c73726a3fe43f850517c6a84ad32376ca9d0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x002730ca798014e3dc1841536b8dcae73326802527e040f9f97766b78187bdeea1177575d979b182ee2442b2e4e053ab0932dbaac27d3b426086be8159e7c7fea786fc923e7905cadaab3e2217a2a6a163e51820f9aa19edd4f4c13ef411fc0e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x0d66a57e1f124899bfc14806aef8910ced55dc5e2207c4db61be383e9dacb5e3a5900870c9decb10119a7a9b3a4be9ba0ee8889a386b696ceaa9b14c2e2043a5096ef886fe3e9d3dcefe3c98d486e33a82567aaca5e92f9f1876a1465f3fd88f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x1420f06251a40c38488d2dd5ff497730bab5ebdf34a95fa11bfa318469dbdd4c02a9312e88cbf7a017aca8ddcf752b9a0c28b1bad0bb96b057cbc269b5ab9ac27bbe70d12811531b9bd005a64a3a84678449186d6bcc2ce3e48a8e883f173b3b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x113974887d62d5b9377648bed8adff649685b7ead814cc196ddbd7518e7678dbfa86bc8bdd9575d42611dbfcf152cf43032c9ec93e81df8289914fb15e78d78bcbb4343525eb6af5e49fcb98c6586e044f464e3b8692418ef0b28358cfdb124f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x1402c2b145c9b76dffd86446dbfb776937ee10f568aa405e08bd5e6a0f7ee4b21f29b9bd159445198b602756c81ed58e005b2fc7db8095d4917ab0485cde75b2a75268859940859ccb53805a5885ec012ff6bb3ab063275f27044eed49b1665e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x19f7e1fc95fff4e88bbafbb8dcfe23ea621bc1f769b5d3d1dc349d2d14f74c88fd11f02bbe4659d47b8eadcfc31531850aac73a54e023a918b9c50d24f887898180db4146b99d3d667e6c05e827ed75c1a7e7d0255a83a77abe3b02a0807cb14) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x07e1c14775179b867f6ebfa1e4eac7d0bc2d53a90007715d7b841634f2fd78484e86ff9a17c5c4c698754d7fc3c5a2e7112e6d8df62a83f58cb270c130f947905eab0fb97a0af59268b09e0decf6dd18922b296adb0e49e6905b49fb9e6313bf) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x0ed6a47e24e4ce134d1988c1c8c9e0d3afd8ea39e8134f3d6d37cb73e1041a4608ff056224eb1d257091c74ed44945591149d34d74e2e2e81af2587e3a217ffdbb51ab66f490735bd737facb7b959c9d2699a9d7f11c167e58f3af452f597156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x0cdd5304ddc0d9753d36e5201dd0b951d01f6f9f5ba818479f6331228567afb672a9f4d34befecd51f371a1a3b2c11920d14ddba2c46ef3f55b93e6d4b6769456f1150e60ab802f573eb10f35d98b96290c8c58de3b10669289bd08ca8eccb5d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0108f6c0ddb42d060a3af5bc726bcb432453c3d3e1d1d8ccd795cc6701335cad137dff61b45e03bcea976a2cd67feadc130a706a407be7237a9d6de914854007291abbd730afcf597670d92b38e6403d509bf1d0848b495d7a4d8d9b3d446d65) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x18232e6e86cc51cbe6070a17bfb510b5e3a708750520bd532fe6c58bc6cac63c9f581234db968a4625d1d4ab90f08d9e12df5cd600e9c63123d4afddb4cdc57e13571aa7b8ed21fb2f54a4a988de14128847718fee4c6c5c3d4c9173d48f4a33) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x05975c859134c5632bb4b246f039b0a45f43dd3d31488760420d40bb52938c9aae329d7ed1fd6c4871b088942a3f50c517b282a2e4f8206249ba05d50a5851b0c03e9ba0a6b0c829755a5b6d31f098a9e7e4adcea5c27f6fe4a4e0c6e4b1e56c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x0d76931ca7049490da586a0c79a51ff76c0e475d9fd1ad034f6fa5eb882b6b8dbcbb3eeefc37d13f6a3272ff9bc858b014e2a3325172bdfea48b616a6b21972f5d4768959efe3e77b3f96b9183d8e93b46712ab1629beea8e03007f4a17ff1ea) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x08f10601fa25e24bf52035d5a8216294ae54378d4b2b6df3e348cdf76a61ceeae5a31777af8b9199ba42f24639b533510d6e9f7cec3a5470e47b04d3acf416d748806890f315636a5d3daded30829dedb795f0b88afd73cd82a2211a5eb1a4f5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x0c9df80bf292db274c0867f8e9de81ffeaba73674cbe0b05f7ccd224e44da54beeab50134c0470963b1f2f02b1a31f851612ff8717619409552b3a086726e3a5d4476694fe82443a78b782e28140e9c904e3db65a9449579185cf6ddee835829) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x00063d556853e5f82a53d6462d6b19f98a7bbce98df79bd82519016e6ab1be0daf3999ff024520c58d54c21133b579ed039afa406025f3afa2424b18e5aae85cf6f8fc5cacfdf72c44848e6f60bd2f2e9884989a324fb6375d2d27ce9c3c55da) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x080f3639bd29544160205620d52f07cb7c35e35b67336205d9f02bd7e7712457be7ed6e7dfd1674c976cb373a4dfc5bf0c4b4cba46235dc16f818d5337477fbc127d78aaeb514cb40142f93aee241122e0585e2bd5ceeb54cf0ff85e028d215c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x066d91ea0514e7d94e8ee2ecd8a3039d37fba6f263e725d3699ec8bfa29f866356cb6d104879bc562771baeae49a299c073998eccb434785bc205388a03dfab4af27249771397863249f0bbd8f78b15c8335e20c2ef6f53f48447c20d196951f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x18bd3b1e442351d3101d3c0eb50649714fb574beb4871a8b41a590a57ed2fa1e84e52714eb6f523ad7d3cbab0234449d07929ebd8ed819624cb2e7730142a8cc3e30d5a743d2504ae1ab766fba5ee2f0f1ad2e70ba765660f5879d8f2391587b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x189ad044ab536b008692b149d1d08678bd1682a2401a2837f41aba45c49210c393334e48bd7027423f5d33a0ab20a4991224e075b527700847a22ddf2163348477aa808f6811541d10b118929458a15a6760b5a3c3841c005fe5860970abe46a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x118d259c4d1924621fe0430c9b0eee252ebe9bbaee91e3f30abff7197c14d5f28afb2e1897631a8f3faf8d59223c32601306cc1c52ac7b090aef9078128030b373e251e8e77d16e5ac6f76e31a2e70a52bf7572ac824f21ae978fb7896da7552) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x1517b8ccca640e4a5bba4324187b4c793032e998abf5dde5f1c908bfe6043804288dde3b2510217d2cc900696a65e855037aea02c6a1a13b13c735121c167c29597007fcbefa359fe6f0ce27faa64db3675bae0d07cad071bf2fa00bc5e9e5ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x0f6d8a8af238867f7ad996376328fba94cc45661a9064ba1a701870e88100e95223bba125538f55efbc7c6bcf75024ce0a6d758b2b6d5a7a85422a58f8a821b455e6c094194c23f3bf600e7117de4b35763007ed28d488865381940c9df65a74) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x17320a69a37a272eec8fe76a288e0bbf3c79c08b7f09de8c704cbafa8c01f4b65a915cf83cad499d870db8458a46136d10c2d589959194d422090e94075559923f02977fcd2ee8f5d168a1c59ae61c918e6d9bdbcc4e3cc4b7689a79481bf650) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x1449666cef3bc8e2cfad84a51db42fe78614f22c33b4dbf365e7be085a3d707e743f9e2d137cd8ff8dbea833426064141433ef319622fb2aa9ce5cb60341bdccc6b7cec550f09e12dcda0ec0fe48b119e5099a4a8d6e799902abd9b2eacea393) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x175e97f7345149ab9b0e843282989beabf92101f4012d9f99497d6711dd60683509f6e17f05ca7f080651b76ff9b78e00f9ea76aaf96e93eac161355a82ccd1a23660085e206ba21b17469c7c3f1d640218813abd606747a06021b1bb3f7a2f4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x14aa58c52ade1687daa89a62ab46a877b37feb8522613b9ac6ba3f38b696cf881ef5dcf25ffaf6e0309464918a18c5250f08f16eff0c3cd0bb3fb8c55407c7e3e416b4734c20064d234ff741f2820d157d9f4ccd7a9dd4b6d23f2a27f7427314) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x148f63418b0ddb0c4743651c6746e9c733cce23249be1d022738bf3a7f612e5116e974e62af35e54211a59b2be1e6a2f0ac062a73c2cf73e28241f0d452fafcfcae114e95e6e19f8cd01e0c21b48787000e05dc5142ffd2aba7ba8f35cd5f170) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x15525131010da41c91eaa0099c5143c6fc4d6597b3c0318082131909e0df3b08444a5bb77811f7ecde47174852315cd8000953ecd2c4a72db6f0188c009c947f71f2b5ace4c86d6c5b95839ce3eba6ebc206a6f85a098f7ad49e44678f5c8da5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0cbd79a3830a6b2426ed71675d6d1b0cdeaca9e1540d4c70b123c4ad2ce788ff606bd378545252019ee79023c8179521196f036818ca95956b2098a8363c3aeb7a12dc77cfded4000f1907ca3ddf5cf925e09dd4fde73e59a7554fda13e11f15) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x171a5c0b4b68cf054fb95797b0d61a45ad209c5e503454d04a4edb66bdb785934e25ae9988e7e7510b4a01287c2427a21483f23dec1fae160dca9356aeb9f599e5ab81eb3338c61e11a55f601fabb6ec4a92375006d10ae3042efd5732be60b9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x0334eac1963514cfb283bbf838658dd3ec5440768b95653431a20776b2ff56a38f4f216362fda81c7881b8fea94810ed09777d7e9b5717389c18ff0418f4db95d1464920cb48777547c9397e41664b508e244f67b3f9c336c1a0e184862a09f0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x1974a9648d96b93664d816bee78c023b8c758caa70b98f4e84d81c10c7e860115c610d2749b68682126d6f750cb2f00d13b560fdf12370aa290bbbe875f957bc1128e7a5ed06474aa6dee111f844dd4930ed7e2313c0fbea8c062c114462ec51) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x1602aef64d7582574a15c5dbfaa55f541c4b1936313a1522bf099d0fb55fa3a092d4ef4f0fa79d3c7d71fad0537e0b2200184aad8e371521b5a632a8b8b499339a917907ee5678994c48a78c29c0e5e481d2b8d9cd882dd306fc54670e1ed0e2) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x0b3d98f7917b7640a724a4508f2b45a658ec5f96f74732bdb7f5478eb02e974b8b2c212efa5f8511a133037cd7dc493007f58a141712efd80287130b4f93743402eb9d7c9258966a5e469d12346d9e85f0f9d5af40549b8687c4b189b610c819) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x079c490c224a88cc5def7af24ce353e7785a1bcb613f8075dd207eda8f21b07e90cf4f8b7d87494a4d5b8f35942007170dff789955eee9e6435ae0688c57951054f878c75002aec6c1a9fe0c4f9d647439d2f02aaf0c497ac5bd47b5a32bbd69) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x057c1db35cfe8938b57b7e647b725a11ce7f31f9ca96eb3020acdc3541bda8526d7cdc0577beb2b719dd389225216ae004b845bddbd5a08e807b2a27ddfd46403840ff0ec45d7529e5c3fedab297ddd7e6c5c0affea25e0b562105caebeddf2d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x0a81b0aab24a7b0818e030bcd0110394650021563ccfab84bda3bd1455d3ec6be9adf7e213ad2a4e47208c51330aeb2e0b1f80333a3ebe0871048d81aa7d736dd9ad2221a72efa4e3b7a3623977d14889049a6ad2cb368e06ef6d3fda4c9039c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x1456ab1fd1f34aa2387a150a3c4229d526c80ab1cd56bd61504ce666d6161c94301056a23bd5b55fb12a5296a4f236fe0a5b131c5374c0abb76124a09c3371be456df830c80e1484ea78ce7ef7d20242ca73a731a099ceb09af4b56ec4b22409) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x064311e4e9bf3e56333869669b283512059634911fbb882df4ff7d4dd9004044ec1ffc6ec41fe31e7e9bf802155130c2001edd64cf3e67f510c17bf47a6e18927f97f7bfd5f7933c355d5dcf2614fddd0806ce173ba5277af7cf991ac5ec0866) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x08596f9d4caea620acd7243a48bd1d678ca07fcc132c7ade82b931548c35b116fff0571f71f0b5baa3834cac4b4a3ed5008b312a1908fd68c173e54f9aa1aa1a35d04d3556aa47cdebce73ec3223ca4b38bbcbe558effdc75f3df8d7331c0539) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x19d5bbe4281667553492e19d31591a2b9b530f49f3e8d0aee5582b3b6aaff8ce3cdae86bd8da3ad78f98db54db0500ec151aa7063def967cc3f8742d6bfcc1a5effe2756c92c25227d37df0b96fffbbf8cbf6f8b9065dd7d26e915de23dbec28) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x06177116e0540177982e98464577ed3321eeb44bc08fed0f62e43c2dcbc5e05c8b9fb25b35ed7167cd09e5200a2e4e010d2757207ae5fdbd134b08b151e58982290a84274b00f1318f39145a8b430ee1bb9ea5ccfe61ac5e4f283d48e9115413) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x1081dba4d09a91baa0569ba390942a1e377531c6ae25b6d31c936c5822ae5dcb9341ca731f6506b24e920310e0f4e6af00bed415d9d23c9b88b1399e205905ec323f5867480033eae354d564fcaad70e859f1496a832ae426e4a708425ac16f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x08952dc3ad990d8f0af38dee050dc45c89cee78148a19af6e105f13642dc2a8dc567050dfc0554ac42d26d8b5ace72e7018a0d8f7c2779e4638bea9c4661b20a6282bd478d4ce97af506c0d63a7e3b7bd3a9db1da9dc295cbbb1edb2e1009725) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x164d40ffad176068800c32f27a21f3dca1994594aa3d766d04c356fedc943773d91140070c43addff98e79b865767dc716a161db3f99faac3ba20f811113a17c93f6e4165a3c98a20e59e314e9efef31b521d3d0d44e2bb22ce05a11e5522bc9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x149224a246e2b14dd1a514a388cc7fca3aaccdfc9d1f0c82d00771504fd47b004a64f81b686d1cea66fff7e90a455081046f826d4dbd43ca19ee87e1e66798d076eb6e4b89caa7b14903fe0214010776398eb0a0d0509363f8b657b59e521e40) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x018994a13ed6f527adb7f1445660fede5989b265e2024dacf27629bce8d22ced09f117d16ec5cf8cf55fb2d36ef4f38d05e441d58eeaf085771de245da3b27f6d39ee3116cb29e0e19a25e5ad1a2ad38a7d91aaebb5dddb50025f13a44ac996e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x030b980ad2ee471c29d8200469d18494fee7c3d58fe446dd2ad67b6d5225dc6dfca718f73bdc078c63f15a9fac67b1550f90d4def4daddfdbc940db5b95bdce08137d87b9d3da7ed4c5c9616a724e9ca982f63d1703ae2f0c0ab3e2d395b0b1f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xf796c9eea8195bd57ca5f3c27f7219bf2c250bd3f49fbeb56d8150689b21e164' -storage - (Some 0x0aa35e2f582a1caf2cf03ae43bf081685ee86a508e6a6506314f44eacd405b6175640619e163c018871995aba27577040988f2c73259d14c374b1089876718b8af7bc927acb1cd061bfa3f5baf1b7862ce5a9bf3a6f8a9d5a84377d079c6af82) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xf70cdbfd81e72e0071b6d005033aa30dad5b3656f9243867092164442c26405a' -storage - (Some 0x0ab5f26308387a5e5300c4391c57fca5d04990778972c7bd3a5091c7cb678fbea728820d2baf234c4f10bed1af582458015004f283d08dba4d34a36a1f05a93dfb7395e027d24cdb024d50d0dcb5515721d506d467146fa599fd14edbf95e5c1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xb5cdc0e76348bc94f2d9c9f1cb4eb21adf8fcc87532cd008362943c1237f5b29' -storage - (Some 0x0bb7053566cf001d96d47c8ef75df36dfa0338934e152f23dc9b92a38e1fd11bc47d0153ed7703a0ea464d3c650c651b07720e06d0057d16782b8e713a5bb38c072bad6dff6cdae4f61e9f5b72f6198800461ef016a98a7da161721d354636e0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x7f95ef6e6962a0ae1bec3aca77ef83ecaf40d97f612665e9fb07ab8edb13aa6b' -storage - (Some 0x086144f6a05a43805c6931d2028199a9240a02b5e280f0cdd909c0eda2caccd515822156e3b5117cba6bf8bfd471dd4c0dbabcfd3520461beae5f9db727d7aad699914a23b387662f7800f266363e84ff54a1bad79adb589bea30c2e1aaad25d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xb29805353b39c32a593129948561c75c4cfd2665d6b6df1a4382852cabdd5a17' -storage - (Some 0x0406a55686efda6979432c9341b85e43ad67737300c96dfb62db75b848e63ecc93646b1e592b635817482963c984cfc70d3597fa84773c5e3500d61b407dcf0a932698a8a2de4285c81a8587452ea5c9a9996ffb625f81c0cbe0b9e8c8b7b76f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xbf259528122a2e60641781c7383d4fcd6d63e18680131a0a8ae9a5d5eb34664c' -storage - (Some 0x0185cab6fd147f77b35d6fe0f1770a9859127bae94ecbd402b1ac2b1f65c27d0c83ad8da963be1b9635176b2e5c5a1d3072c47311cf5aae7a9c621b06bb154a4b89a65e73d311a75f1007c3e9606f366b05d6be349bd825694d1b7e48238cd12) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0xc412aa942ebc1384282ebdd5afc0ff0049e03fb26e2cee36193e010a6199b442' -storage - (Some 0x0e9736e5772bc8a33aef6d9a8ced43e9ffbbed29ba572e5597bca97806b64982f29b79d9958f4501bf4a74629cbf9253068d0105f3f16d8b03e3e7f7e73a67f98e1f2a20cb6f2d7467403b1b8f69cff726256becda08d187cdd5fc263165b21b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x22386f55e46149a2a3b86941da0b19cedbe3845a505b89df4fb8a99d3ad2cf5a' -storage - (Some 0x00ceb4de98ec92f7a3b6eadff0f3dd41830e20d5bf83b70123f70021ef22b7fcdeae86bcdecbfff4f61f77a015372a4e0ecfe1ca78dd49a39c9eeb36719e6b18d8be54f55fe3c18e0749a81af4a7b3019c8ffec71970631d76d2ad03b62e1436) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x692617953b3cc0fd9b98e44b381803f9138e78c9ec3c3e78ed10e430402a041e' -storage - (Some 0x0b663e6c5376162a968f41f23ba1c2ede975995078be3ed850442845d1fc6ebc91ecc591b58db1e568c2ca9e9e91b40b15c602104a060a08ebfd31e8aadef51b40357003f24223020553876767b83b1f51afef6a5d2756e0f26036eb6ee24aaa) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g1.tz on storage None and input 'Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x1713902a27c37a85f4c6233f52f3ebc6a85718185b9efbdb190bf5025113a962' -storage - (Some 0x0d9b1e3f917ef949642a2a30da1031096abf49145bd66efeb52e52ff0bd517e77a740d7bfe08a44d57f1f216c7b952c40b1a84788e90b7a37dd66b7ff6fe4b188670445003753f48235abf5f1e1d6d193f8182e5608d3ffdd2e2877e4d1a9214) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- negate.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- negate.out deleted file mode 100644 index 1690636618f3..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- negate.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 -storage - (Some 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab -storage - (Some 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 -storage - (Some 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 -storage - (Some 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 -storage - (Some 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 -storage - (Some 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 -storage - (Some 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 -storage - (Some 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 -storage - (Some 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c -storage - (Some 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g1.tz on storage None and input 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb -storage - (Some 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- store.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- store.out deleted file mode 100644 index c07599583ab2..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g1- store.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 -storage - (Some 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab -storage - (Some 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 -storage - (Some 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 -storage - (Some 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 -storage - (Some 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 -storage - (Some 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 -storage - (Some 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 -storage - (Some 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 -storage - (Some 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c -storage - (Some 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g1.tz on storage None and input 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb -storage - (Some 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- add.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- add.out deleted file mode 100644 index b6cc71745773..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- add.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x0fa220d57ef6e4195bef1c15c25d36d303589da95432ecf1231872d322dd6d1aa9195e14521269f60906b929f5e511c616ad91b95913e6d5f03c7144ea9a8ac2cbca74d4e4661a744c1c31e666a3b9e229d19f0f4a0849dabf8d42a999429688153a350f527d5b45b66f4fb7362472a9a14ac2e5be7fc7a1c07735b62fa366eb7d6b938dea2b3476c4efee97211ab51513312efd116de802599d7fe3406ecc09d9cd128fb6f6ec92cf4fc92ba02d9ecd623a7124f9936ae05810095b07daf50e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x046035dfa9f3f77c402f467c98c79d31cdaa04b517ca830495fd211bd96007d9e86e77f52b563a678a283a93e990b1cd0e920c1b17a7c522a1cf06d9eae11fe7a83ad560e264ca83539f129ec7781b2aab6aea834c7cf3790ea8bbf36bc8047f06fd35fac95c31470220839b5067d8324b8bc7cdc64cd02483d08fcac9d0ae2803ceeedb4ca0491c8d01543d57c0773a0b356cc1179eef81b6db0e5cf4a82eb452c038f2d84e3c523165c7bcee56984b43c78ebceefa58e75071cfc4298d8ffb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0c915014aed040179e85ac98cebaa76ed11a7de7d2a9b50b8c595ddb660a7ba20352d34d3a1a682e416488d51c627db50d3ce8ddcc38ce2c0c44527d45e540a38dbff1324324b8cab15a89c00d18198277e22a48e959bb88f87d81f22207a03712a5b4e4d758741d995ec296cf72903ea3af86a3615df586334a0bfe787af1c9efcd97fad13afe8fbcdd60aa87744a1e0dbf2340c9e8edd52954ce815e3559ce021dd0676af7e82d1f26457ad4e64effd3ba90b2101aea30fee2aad64c779417) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x048e783c39590796da9ce919b19a7179fbf7ca422986428d9ca4c00afeb3da88f78e4f85ee312910119a31ac675803c703e8f3560833feab146988683e7c192154c6741f449f711ceb0b5c732ad8f488fe57cd5fe3e5b1eac5b1d43af705ac4d1298b37bce78a4bb17b138b420efcceae18f300c8cfdc6417bdb84ecad21ecf6dda75d040401061e07e19a114dcd059f0354cdb917a218179ed3c1cee43a2dd932ae73cde416730172e886321c2f828cf2fd2c03fc522f3df06f571685eacafd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x0dc42d2bf532bcce973671bc74419a7d43b504f66667356c00b68126501cdd69edc6dfea8ca9bf757f9286c30aafb31d07cceafd4ea4ec714a310648ea80180e439a6ccfdc6ddf62b9876bd5aef725b4cf999f25006635d7cff2ec0b70abb92e12cc523377fcbb5dfd41cc087fbd675b1309f700513d5ea90d2a3b08cf005377cb34f64242fbd775ba63d5368ea6a2bf0d3487eb537b7a8ccdf230728b71e41056ef93b27e5476df0cc4246bca3640b37c1cdf1af59910a7a474148d55901b95) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x0d211843d3116fe2962e44424d5e1bdda2bc55b0c07a4eec8c0d417d3597faeb202e986cb03711e879f3286c8574615f14e779485d1389631195cce6b413184128352544968c0c48df886eb7284361d514dc38999f77dbf5d743add4bbecd4301288339cffd03d1098cc0bed90dcd583bec892c5f3c6922831d21cb8b7150c76ac4612ea5489c7476c1bcba216eba61b0a7447b1fd3d5383f5b2acd06c322ddfea84fadba0fcd995ec5ee701a34b9846e93974dd3cdcc5754bc7f21705b0b58a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x013e98c54426b5c356a094af259f5a6c3e3a16dee1b4699157dcd7b4b3dccfab401dbf1b628b60293512b5ba8060c7b80f3360d8b7afc977b5ed76e640ede1cd785d0c021a0478d6be0f43288ad75dce019551110ab5d251bc6c789b8a4d9c74078c767bad0eb06bb1447818304a37280ffefdfd862b137572fc3e2131d03cdc89f2637227e7303e7ab685f87d5f386e00102910864b02ff09d9ef9b534486c11b9ff933e8d2445137fc01e0505986e28b0c4b1608e5cd646a8c5a63b4febd77) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x170489c51747e88f11af77fe2d5a8e3615e99924a106963d8c34a966f643a7eb66bbad37c2c333cce34a9971f2ca87a8115b884e4f6c964127d3741fb6fe8b19a81108fb38135498dc4e582bfec87981bb814294c8a5e09dc7fd06097d253c950045ebff141ac9afd3d848fe89b37373978bf030afd38ad713caaa28ff9138d0bd0f6c4a323cc96864e1b1b6aefe1b850feec0b7f1b911f2c320f30411c33737251637803ba4ff4ef1fd480b9b98305a5a5f9ab4faa92b169eda541879af36be) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x1242ac850b78779a40f548b2ec3e5dde33bf432def2c6790a8099096ad6933e2c7faa78bde8a4d4e2b586d6a4d1f4225062fdff88df3cb0df8d5e2097e53ce61b17e211c63579aa95dc63df0a1824ee36852af030034bc218b9b1ce229cb9c8c149807239b0e175e864c704ef55ae2cc2ec33c71186461caee8e7771c5ca4d2eda4388d8fdc15090e026b3654d049957114812fdd6b7f9fe01b98c1c03eca0b7fd62e0113d902ef37f3bc5191182c983251af153b36f478c3eac4d967a5820ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x18b4558b569b0e5b227388c9d844dc37bc0ad40ee5d5098871d396e09b7f85db50b78b2b33fbf656d02e83b45d04962e0ac8336661fd1bee9f074f35f3413c81d22825c469c70afcbfc724ff25750b7598493ea501e5ee79e0fb2d1e8fb5ee9f0b95aa27a6f20c52438ef3daa6f03c8bc41db48fb24fe73921425b1b4906bc60ab7e4b4c290f3c5aeef9a40f094e3dbe0a031822e3366d77078f5e93a80f8035f6f2941593f4f30481399f91431ec85dfc81ce11b824e9b7c08da1634b8e9c83) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x0fa220d57ef6e4195bef1c15c25d36d303589da95432ecf1231872d322dd6d1aa9195e14521269f60906b929f5e511c616ad91b95913e6d5f03c7144ea9a8ac2cbca74d4e4661a744c1c31e666a3b9e229d19f0f4a0849dabf8d42a999429688153a350f527d5b45b66f4fb7362472a9a14ac2e5be7fc7a1c07735b62fa366eb7d6b938dea2b3476c4efee97211ab51513312efd116de802599d7fe3406ecc09d9cd128fb6f6ec92cf4fc92ba02d9ecd623a7124f9936ae05810095b07daf50e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x12e844776dcc54686e33e5e2f76e4ee1cd3bb53a8b93be65342715478baf39038bfa376032a3c73e0b289139afde6c88140c4f3f0eedab77bda5d94b53f0842596fa673c1a8646a6aa8dd91ee72e1d508d0269d14efc106eab6f51e6f08c7a210c77db6748c89b678b3bca8e2ab6156a21f019bae19948d7e183c36cbb3d6faa7cef0ab8756645b52c97ad26569d71c80305f8cc81292b5fd14aa32933d3356ba5de2a9df2f216e5d01d18be8f4191f5a8012b786f34330a6142e73625fe7f2d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x0794c08576b1ca634646815a4dbee1be812a844e0e66d2e36ac1c1f03d30c290eaba39c1c330aebfe118fdaf3b5fa50216b2fa022e510d8502979b189c7d2ea12cabf1971636fee9c9288bcd3c3f9e5d525d44668234ec816ff6ce5bb29a0e0016736353f2200e00ebe389d5d6471f41d00d0d110396e2b6557476ce46586b8f42a569e2035f6407638d7a501fc99f89053d356e9f23575f131f51114e51a7d5cd3924d233828a18da262983f87adc6931aba26054b692f3fce47dea8d588ddb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0a6aac5634ec9d9ec7ae20368fa1cd242fd56df6e470b2bac3c7087404724c11d0cea1aad848098d71ddb9d2708cef460abe0e2f2a7c29dd718ef4007fc9c872ef9fcf53656db14560d5e94638ee9baeae92e76b99889e650f1361d73d0b85a304168544ff972b9973313266cf84d5b2dadbd40a76d741d45dc75379765708dc2384a161702dba5a2bbd8bdcb1bbef7d02a3eb80499e7a428d48fe2fa99c6f3ea3c729db0176b3ac1cd48b8ff81d279c133078d6417efbf884c7fac39071ecf4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x1719f1a04b75f8dfdffa75695dd406b35d899d91325401355d2f3fc17abe20e6c04bf95cf265989050ea6be5285aea1708f5efaa1b197d90861811d8497844bf6b8e3cac9fb729bdbceb7d78bf324ceac87035afed4eff6b87efdea86974751e0d9ee16eb55482e287e2bdbf80d63dd5c83a1b16336b4ad078e2d09ce1255cf614209dd7a16228f242ef65c4b79fd2a71276c7a79747f69344c28692384b91b38f85c7bc10ae3f9ea3df0d8ffde7374d3a20f2ab662019b8770853bd39e21573) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x0655de0cf51271c9490062e29b8da70ee4c82939b26218118519aaf6298f2ef60721ffa7daa6a37133077b0dabd296830949eff2b5b24843c956b09c9417f2fa4820fd35ae9a01d5f0430329795f5e39abe6fd35ef8e9fccd43af92246207a5d0b37866f86062eb555caffeae739def30bbc454f2c8bfb1a2480e2f91926cd12b53f85691710c75802cf921b8a5b0fc016f834c60d5e79ce20b3172b777dfffae9046d09e52aa188e45be26b0e3e8e77b8328530a6446fb441a3e145535367bd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x0e9448fd828b81168cbaa65496078edf4690017ef6628e6cc5687082f255a16a9ad51bf31cd780cd03fd7946ce0b14460bdfcb61fa233217a63a372380068585f7fadc6978213e87c1cec52e52c5e84010446b4197e5e15ea7712f0603627eab0076cc785550ef9de1693c46481719f089d33d320fb58eb5e68c63f7dd3a4a511268506fe949ea89b320848d7c5ecf1a03ca948df7b1fa4905fc129a50b0b6e61faf0b05912f0c3eb397089a9752a228cb881331f7d6d9b1e44bfbf3f9090f49) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x097aaa14ee186c44f4781526acfa3a83929f5e39c65ff1266b0133e18d4c6ad549087a2aff86235eb6080f2c6f4fe2d1046748aa1dbfa1ae72dd3116fb4ace512d11a4df272bf34fbddb6c8020791cfdfd29eb4508e8bfd54a1d8b7e16535f7904eb63f70a94be19eb06f2a337006b4583267b9d8ba72e8eec424a445b423118a68a0ea992345c8ef4a13cb68e8ad80b108e284b312f574cfa7afc3ab6d9598cb342807b7686c2326d4d7a257d73ed383a420287d2e3c38eb321bdbd2aa861e3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x1583640fa782fb3c949c9a89b95e52818fae6fa7f130ffc5a8304ab7f78fc4d0050b0061a8e90b29f334fc7168084f4810486574b450bc33691aca553a6aad3123844d39c265ff52e5dc66f0d797a80cba141db073ba767a1021c654eb1a316b0193bd94baca5c7c0fcd370532502b6ac4eb19b3d10a3f4a48bda5858a888c5df42dc9153e70cdddd7393fe381aa1c6416e2203e42a66b43189b3789270d20ff285e3279667e01f18f686caed2c0a252d306afc2598a17ed518acac4e8b1b7ed) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x16e6319ec68d88c4ec5d017df123af94e924963d7e62cff44ac709e22282dc904f8367e30de2cb40af8a237a9641e82f00a18451fe0e97eb1c88b8a05aacf8fd3756c4703cae982bf8b9af0f864a0afbe62feb1a532aa8f8b332168b6c298055179319c180a36ea2b55096b645e8c42f31cfae50884cb06263ffe11b0a210d7f3bdb1ebf2acfeefda47cbfb717487e870255e5ac63c4ec740e2a3aec2e5134c6ce8afd43a1c793c42abd87fe0fa93c578dfd6e5d604510e1a8109b4b35b172d5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x050db0ea21b45502d1672a82bca3e6305f8a37689460f225920f4de664a9b3df4912f035314ec9b35d972ba67a522b8d11031b259adaaab72858a94000b15200254698fce139fe4f647a3a38e759144d7c7a12fe263194e3443b95f0e863c9f804ab9bf6e3eb7dc3515644dd29e5572f1ba34a18feebd12da678d35fffeb65071d18bb2dde6b6e70fbb14458e5adee12113aa6dcc7d3f7c25b84031fef1ce34e8b7eb8921b9ccb08d7a49f4c54e0e2cafe9eb9a009d86f2d118c784848c67db9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x046035dfa9f3f77c402f467c98c79d31cdaa04b517ca830495fd211bd96007d9e86e77f52b563a678a283a93e990b1cd0e920c1b17a7c522a1cf06d9eae11fe7a83ad560e264ca83539f129ec7781b2aab6aea834c7cf3790ea8bbf36bc8047f06fd35fac95c31470220839b5067d8324b8bc7cdc64cd02483d08fcac9d0ae2803ceeedb4ca0491c8d01543d57c0773a0b356cc1179eef81b6db0e5cf4a82eb452c038f2d84e3c523165c7bcee56984b43c78ebceefa58e75071cfc4298d8ffb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x0794c08576b1ca634646815a4dbee1be812a844e0e66d2e36ac1c1f03d30c290eaba39c1c330aebfe118fdaf3b5fa50216b2fa022e510d8502979b189c7d2ea12cabf1971636fee9c9288bcd3c3f9e5d525d44668234ec816ff6ce5bb29a0e0016736353f2200e00ebe389d5d6471f41d00d0d110396e2b6557476ce46586b8f42a569e2035f6407638d7a501fc99f89053d356e9f23575f131f51114e51a7d5cd3924d233828a18da262983f87adc6931aba26054b692f3fce47dea8d588ddb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x13de93d2f82a4593a29d234fb227db03f16f89b393f015623a52b05fb36813a3fcbbf21e29b95d78978025d9d5a6396a0ff1f395ee54e4cbfb57d3dc2ed0fea341f0c6e38266fd3d6e81cf9797f59e14d1f8a0d2ff53addc076cdffd23f997810c9767ee2f3f1c842f453cd4aefeb8adf07688d4811da35414c1a7433fbe5d6f59fa8c0574cef2a2d7e703c1954c19e411ba2316640e231ab6428cfb8d1d25f6a7bbe3ce0d8842d45151099ff9e845cd1eb75fd8d5c4494a2de389a0e9350ee6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x18bf19fa45d0936ad736e8f0ba44e75b71e263a5f0b64dd4338a33d98243c13b34125b9f49bc8653437e45de9d30a93a17ebef17433f244d7a64c0fb2b6667fc3f5bd0b11752b11ca48db539506cc87d1255ea878c9476f12fa76baced1e1dc40d2c7a1a772abe14400a371e2dc53b0e30139c173c4b63af51e0a8f098f779652ab6a7366ece6e726d0db36d4d869c1f15b760f663abfab268d9282848751fb6bf37b73d45a499a5b13d944177be3c183ea90a22c707bb1102c802c7ee72beda) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x040a521e7f62b87f49a3f96b3c33b3f92db0f6bb0e708b6929eb59829bfddee5005e98176447c65e2054703be2fd10df0cca3815ceb23335da24867b07563b6d4696b27e3da1cb00a120bdb1f506113c0df675c1923a791523d83b45a13102c101ff42b0097527d2b1d88646b1e68513b7f61533bce07fef8bbd17a592f3d7dc5e148a165633337607495e614eba86b410ae2cb3d04d352036f95c34417364368b862a29199668bab9ff5261f94fb6e5a00f8eef9d0a3906e57720dd315f7921) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x05b81eb847ac46ba0a7dd65998e59571ecd7ef546b7683388f631777015fa72f4e2463b4d193b8ab575b0aa8d077cbf105d25ba702f7c774572a60719894156141940a0a39e7ab838cb55524617826775b9ae494ad11213834dd86b1f02fbb5e12a932312f159aa63ff0817f8e4e478092fdfab946e5db0c05a0021374716d167cff0164ff823dfc39ec1f871233dbda0110bb37e8d5b4764fc40d6c7c62bddda525765a53385ead794d6442cf5b79fe14e2bf4a74874da68aab1507be8b31bc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x090024be3e658d797ea05cdcf404ba80847cd69c3585217310973fbdd59b3ccdf9bec4437325f24816beefae2c2986b6073d93a3d5f5d2758dd6dafeed80c6e730a512471c227036b0cba91369f2c1043e8722c1d87de3ba901780a0824ad90204a467083e873a87884ddb1b6455d36314ac953c47dc86f01221c97b2c70a62f24b852c291d49845744c1812b85a2ebf15ab172859a93dd93be43b59d784079bedf952b6596ec6926a22ce8511f503805914b72752b022bb32faf521764cb268) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x1390ef409a99796aef7b741837f04ac5b0971436b71987ed2164e89950b9834257d50b1e1595e7d423b70abbe9ab5d33110ba5f262ee8cd728c8d20116827832198aa304fea6bf519d767260f947027f544903b9ec4ad73b0404f705ad1bb7e70b8f4bb943637d1830d31f24383f251ba5d64281472d5230fb974afdc27014af81689d5f830f17b76d4fe61b6bbe4a21128c6036642b9f636ab3215921545b3d886df46475f9a11a4ae9a173069675a4a02560a7dd717f7d204427a5b33563f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x0bd2a8921e426f811f8ca3820348cff6dc8efc095010d4068717724a3a076a565e609be3f1c78c4b37a61dda5259a3750e70265a91f14d71b38ab1df6f14ffc11f8ff8c552401dc1ec2a70862905724a928888ab5000cab2c206f147f49a9e01019581dfea445b53898ad37d69dcd97f00db2023fa4049a3a3fe3158275aab62cc16f14f766dd9df07852f7c5df27b2111dc81ab19b80f5842c7763b036090e3a8368b6db669d80e74c0231073a46835f7dcb34aab2bbb79faad55940977dead) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x0d6af0671af039e4046dfa84fc7aef856495f732e95a24e0958b9729ca4b87ccf8b115ed6d1b60265b838116f5c56c8e0e1732e3dcaaa2c0a44c5f58a3e2cba84005b2aaf4fa70b995d8c30f5d0c25c0a9f3b6388ac91da8f7c4c9fd084917e80c1152762adcb783bc96ae1e2c37d6870a174b5cbdb1adf5adbda7d88671247471b36c9d5573ecebbd068087f45dee5d16925acf0e18b5adeeb1d4659f2f8df4e8af39da572e425c796f486ba67e05f3b7c15747f35781294128e32cc66ab87f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x0a300f596c740d3a332118e868fb8a0ea04688ebb394489785ecebf2739443b346b324e3fd9246050d0aa1d3aea9f1ce0ad93338ac85b6a66c0f3fa35c81ade175275570facec6395631a1d5a977afbfdd44dcd174d2d782105a1503d25e9baa1717a6f3d40df12d5003fbef8dd4e176fdafd6c1bf5e62908aa160ecfabbc1a9d608c32417a1221d589f70f5335603200c9e15e9288f7fb90cf7101301dbfde0ee2051b698310f855b1d876cddc553d4ac3a88f8de8a99d7645595b4ee64d3cc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x0c915014aed040179e85ac98cebaa76ed11a7de7d2a9b50b8c595ddb660a7ba20352d34d3a1a682e416488d51c627db50d3ce8ddcc38ce2c0c44527d45e540a38dbff1324324b8cab15a89c00d18198277e22a48e959bb88f87d81f22207a03712a5b4e4d758741d995ec296cf72903ea3af86a3615df586334a0bfe787af1c9efcd97fad13afe8fbcdd60aa87744a1e0dbf2340c9e8edd52954ce815e3559ce021dd0676af7e82d1f26457ad4e64effd3ba90b2101aea30fee2aad64c779417) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x0a6aac5634ec9d9ec7ae20368fa1cd242fd56df6e470b2bac3c7087404724c11d0cea1aad848098d71ddb9d2708cef460abe0e2f2a7c29dd718ef4007fc9c872ef9fcf53656db14560d5e94638ee9baeae92e76b99889e650f1361d73d0b85a304168544ff972b9973313266cf84d5b2dadbd40a76d741d45dc75379765708dc2384a161702dba5a2bbd8bdcb1bbef7d02a3eb80499e7a428d48fe2fa99c6f3ea3c729db0176b3ac1cd48b8ff81d279c133078d6417efbf884c7fac39071ecf4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x18bf19fa45d0936ad736e8f0ba44e75b71e263a5f0b64dd4338a33d98243c13b34125b9f49bc8653437e45de9d30a93a17ebef17433f244d7a64c0fb2b6667fc3f5bd0b11752b11ca48db539506cc87d1255ea878c9476f12fa76baced1e1dc40d2c7a1a772abe14400a371e2dc53b0e30139c173c4b63af51e0a8f098f779652ab6a7366ece6e726d0db36d4d869c1f15b760f663abfab268d9282848751fb6bf37b73d45a499a5b13d944177be3c183ea90a22c707bb1102c802c7ee72beda) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0913a51db9080ea2c98f0d39ca48c1a13c1da70e31dc19881aebc8e8372bd01a9a20f7b537aac8d3a7ca04560a2203050a89da45917cbde7ce124eb1f1a71ad99360787e3c9dcef63b49293e00939619cfd2772c9016dc58ec561b9fc896f0a10a2072b1e73a5c45e8d9eedb0f51aac1c6eb9205f4f22633c3e4188f702bffcc9c47bb7e4dbf24323021c4b5502f96b703a37de84b8d408a8da127fc3ca3b73d44ffc766c9009d46ea7dbcb0239ed853ab779e59fad95a2bc1a385a5299b84e9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0f07a4dba873d6a94e491900c012798c4fabc655b547246881b8f32dc445a1c4b526f6df1c44147e840e5e19afe0b6961294f805495eed4fe60a9f7598bd74222ae3499b74266c75cf28c6f60710fc03900f6932086a56e746b0ee345c5f3bf1009058242c0583a7457a2e4453dd3b9a27f73d5880273338aad994a9fa6f7920e103611dec931e2bdebfa181a129bd130e002aafdcd6e3adcd33ec7381b4e1ee4ea00eb5d9aa23dabab75904097fb85580786a923121512aa6e3c2c2fea6c2c6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x007a9f1614d062b255a27b83458a3aff3c81866153982a9ce763dcd10e908c44656c2edd264a1b61396efade79d80499058cae9125376748389dbdbad55088d1509c1a6614c57dcfd3e1cc47395ffd9ed195ebb60dab36cf6b6083ca10b49b791363970cdbd6072ae4e6ca782f508abf0a2d7ebd87c3eeaf07fb0c6158a16a807e1371e1802fa090ffb3813049f22e02054688c54a9d803f46fcc3f9576ccfcaa0c7f90b766330aaab3a4ae32134dba9e48fd6830b503687fba4c8053fa6a93b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x17a51f0dc1e6bf2aa154ae6d97fdbf0f9549b8a8257fcf4a90229f0a001715515c6fa8ac0a97537cd0c87c5722014358147d464e2d080e68d648a9b9e85ae4b1e5d6001f08dd6e0fcdfd20c6932534de458127c9c39322227546d1d2b898b613072f7375c55fbb46a4e122a7e1c45de6d6319fa2c487cfbc5547c6dbf82b38c81e8bb765144e997fab37da639a14a8f018a22c427db84499cd2bba0c736bd9da03cd183568c27741b589f94ad59ae372a6833b2caafdd088fea7eeb2fdc6790d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x10f1197dcb5335bbc9fd9b0ee96ed160c1d8cf7cd5a2c23550f75c7d41014328934594c87d0fc79690575e3bcad723ae094a72493ff86d36163129d59cff970820a9ea2a9ff57bba76aeecfc378e14941030b91bdfd0710d2d531e368b1959ef035d6b262ecfbbe0277c7c09758fcba6fe5b3f35f6d3e2e35b45f22beb6873b4e4a3b4293e58230ad4318313c3c6ef5c11e4fa223503b33cb6bde56d611716631b55c3307946a72b7090f12b6f04695f2432836516d65cf70e76dfecd47f3eba) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x0d81babfefbd132108cd4e247204997823727cd2267020d505821c2ae0d5a73103d40fb8c876492ce84fa43b7c97352202344ed091fcb8a4173325899b70122da54d00e67f3265676204f06d952b21d92605a7d70e1a9fb7019201873755239f06730064af9a494bd52ecb00250c317bf067df6a6eda21bc92c9adfe746b056e65dfc4badd22b832060092b018cee22a096f0f6bd5fb0218e1b3a5ca8119e6c40bef5a6dc9cc74f34517d3a8997b1e0cb36479ccd6e46b3d9fe2de3159d0e8c0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x178fd42698e846ab09f28e4b945bf51a573a5f67b01a50e7de386e0c2cfbd4d436ca77d0586aebfd3ebcf0cb03d247d600f2b025bc852bd51eeb61f0394f3fe553a2353272f8673a1a1720bc472181d16f884dd78bb17b080f693bf1ceb139430d2786584df371d15ab7529aec1fb1890818961979210babfe275729d11678117629b50b6971a5734844c856f1ad4cf909f85560e3a5dd049dc357e6806b2ccc8661032eb206cd718e27fa266f7e2f86240e655f72538936185697a94c122f7d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x10875427dc85c110b01f3bb782936f27a8cd5466fa0f0cf5917befb74c467104bf0a2fa605d465d902e1ce414f571a000468b7ccdef205be10db5fcf6c3d935f273a2f3bac6329c30c1d5493d77ab1068a93f5f3a93de9a96e57a77ccec573f413c396a7d9e079253c98302ca3e10dde046279848c9ae49e24b14158f9091e84bbcd61e13f09b57cb310a4c6a973acff0836fa3e258df34ad0c89e7b280e92f00acfc220eeb5bf8647a30d3971f08987f7191983a45396d68454d552c903cd13) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x048e783c39590796da9ce919b19a7179fbf7ca422986428d9ca4c00afeb3da88f78e4f85ee312910119a31ac675803c703e8f3560833feab146988683e7c192154c6741f449f711ceb0b5c732ad8f488fe57cd5fe3e5b1eac5b1d43af705ac4d1298b37bce78a4bb17b138b420efcceae18f300c8cfdc6417bdb84ecad21ecf6dda75d040401061e07e19a114dcd059f0354cdb917a218179ed3c1cee43a2dd932ae73cde416730172e886321c2f828cf2fd2c03fc522f3df06f571685eacafd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x1719f1a04b75f8dfdffa75695dd406b35d899d91325401355d2f3fc17abe20e6c04bf95cf265989050ea6be5285aea1708f5efaa1b197d90861811d8497844bf6b8e3cac9fb729bdbceb7d78bf324ceac87035afed4eff6b87efdea86974751e0d9ee16eb55482e287e2bdbf80d63dd5c83a1b16336b4ad078e2d09ce1255cf614209dd7a16228f242ef65c4b79fd2a71276c7a79747f69344c28692384b91b38f85c7bc10ae3f9ea3df0d8ffde7374d3a20f2ab662019b8770853bd39e21573) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x040a521e7f62b87f49a3f96b3c33b3f92db0f6bb0e708b6929eb59829bfddee5005e98176447c65e2054703be2fd10df0cca3815ceb23335da24867b07563b6d4696b27e3da1cb00a120bdb1f506113c0df675c1923a791523d83b45a13102c101ff42b0097527d2b1d88646b1e68513b7f61533bce07fef8bbd17a592f3d7dc5e148a165633337607495e614eba86b410ae2cb3d04d352036f95c34417364368b862a29199668bab9ff5261f94fb6e5a00f8eef9d0a3906e57720dd315f7921) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0f07a4dba873d6a94e491900c012798c4fabc655b547246881b8f32dc445a1c4b526f6df1c44147e840e5e19afe0b6961294f805495eed4fe60a9f7598bd74222ae3499b74266c75cf28c6f60710fc03900f6932086a56e746b0ee345c5f3bf1009058242c0583a7457a2e4453dd3b9a27f73d5880273338aad994a9fa6f7920e103611dec931e2bdebfa181a129bd130e002aafdcd6e3adcd33ec7381b4e1ee4ea00eb5d9aa23dabab75904097fb85580786a923121512aa6e3c2c2fea6c2c6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x1652363a9bd3609c22f6c5f10c8768241de0d1c618e704b0e325394b315a7ef87ed5168d497ccf2c3a49d1d4896af16d09e1eb819ca6af9192af93b67f5a7421dba6341219ba2bd75a9e12811de4b51df938389f7cc9779a75c19057ef83a4010ab86d7781a14b40516ed6fcbca26854a57b2db78a306efcde40f68adf013dbc571f99e7474592016fab08f5dedc12f10dd07ea9e487477f24f901fca69ba33acfffd74fc545cc745e1130fbfc3fe35b7d9cf21f94a9aad692c1df2cefeceefb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x0faee564e739a7e9d9b2eff2f35979f8c893d0fb5de5271e87ae9fe3ea42f0ba75d7eb1dca9693890de995b40ed7dcd600161d6fa0462125050a0bf369d9858cc893669f3984463d40af2547cf1a6dfadadada5f3c70d05b3b774b8e3683464a06a7830e2c2bbce87a8680b2493aa25aba646bca8b5b818a09581b7bb1be131e08c4168a043e45d56eb41b8b00a6507012cf7fb8520bf61b78bd019df07865c0b1d267e889b104551595f5034c798fc9b69dcfa5b9dbc6002e186cf9abfe0802) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x0101c54987955e4eb4a0f6423fd7b3a2f06ff5f2b98213529d2174c52b33f8cac47c770821a4133b7f153e98e1669f2f057ca3fe1f9420a22afcb783ccbc950d5e0c3c8a3762d66c31b627e93f9e169fba3269fc3cdc1e904d37c900b80254df10abedc8e7cf31a272448329518cf12c1cdb0edcdc5c895f841092a98a0ff37c3556cd079f0d821a22b413a56f55b6bb0de003bc4059dffd6153580abcf4b27b8426d9439e4d4da431c193f1d62c55e7161b2f790f4b31413aa8cfc1a1c45cd8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x0568e06e680dcdbb2d68fe791e938363a7745910b3cb48d5b3a70aaa6f4e4fe2100334864bdd33033cec36ced33892cf0505e34bd60aaa951aa619535951ef24f633bc346797d240095e4826ecd461d6f8b0b7e61cb34a552f85ba7ea44ad32709f7e4e554d56b687ff494ed2d7dcc4861e1a67cb044a84327f9054b8e313beb68147d5adc70525b3dff7f358e864e060667f4ac5edfb803dee782e88cf9dad054d38b7192abfab52231b73b6410c2ad58920988189c07566290b4358d6696f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x0389a5e8cda6286ab1e92f4c6b4e42cae46fd148359499b41e621d960892732247f291284f305c17377a7f703c804ff80ee8cbc431aca16be396de371af1f17959524dfbee3c6bde917c9155699d4a2bf6cc11bbe9c1393ce8bfb67d3765b5330d8321fb114c6aea1587d420ce7ca47126a75180656ed806d530302b35e3aaba0cec9ec31f94a15248c082c1143e625f1344754b953b5ddc1ae40f732696c6f99d900dc880a78c750460822ea36cc86e9350a25ee4e4d82696111477b18ee9e4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x041d34c5ddef9ac443dd7848cf29d87c9ee93f9a1433e0cf214e558e93d488374812a9d2b43791e8be6351ed6b0c8efb04bd817bcbf3426b059e7d0905931b309d41e46378a62d0ae0c335d754afd0f4aad27ef66e6cf81883999cc3e19d5cf300dcf814ace1aff20dd3e8cd77392190663679a83289becb9cb669b4c04c1328d11147e928d96e42272815b91d0602931219e805b8d2b35c3ce231c6ff70a93c3100b858e55e42c5f797fac45ae2c19b6afc3e9d4d3d24e0ccfd3ab23fdd973b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x0a85418bbb38c1ebe99c3e1b76e509a9e765bb876c6a567b12e1e07d80a45d8de1aa9d6425aee533d38c716be18e4cf5123d60d85aa0d15271761bf6fe5c75d291602d0bbccaf7ea30625fb18f4f2012286abe933de82871e27bc995aee08ccf0a4a905214907b3ed66515c29319e705b2892d1f54eeb61010cb68a135b5c0eceebdae1f3e510d49223a79abbd1e5ce412f38eb5ea519c65f950ac8b4a274ec8d2742073d4d4603f050c8751202830f8d19465fc6024a4d52c7183c47be42325) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x0dc42d2bf532bcce973671bc74419a7d43b504f66667356c00b68126501cdd69edc6dfea8ca9bf757f9286c30aafb31d07cceafd4ea4ec714a310648ea80180e439a6ccfdc6ddf62b9876bd5aef725b4cf999f25006635d7cff2ec0b70abb92e12cc523377fcbb5dfd41cc087fbd675b1309f700513d5ea90d2a3b08cf005377cb34f64242fbd775ba63d5368ea6a2bf0d3487eb537b7a8ccdf230728b71e41056ef93b27e5476df0cc4246bca3640b37c1cdf1af59910a7a474148d55901b95) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x0655de0cf51271c9490062e29b8da70ee4c82939b26218118519aaf6298f2ef60721ffa7daa6a37133077b0dabd296830949eff2b5b24843c956b09c9417f2fa4820fd35ae9a01d5f0430329795f5e39abe6fd35ef8e9fccd43af92246207a5d0b37866f86062eb555caffeae739def30bbc454f2c8bfb1a2480e2f91926cd12b53f85691710c75802cf921b8a5b0fc016f834c60d5e79ce20b3172b777dfffae9046d09e52aa188e45be26b0e3e8e77b8328530a6446fb441a3e145535367bd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x05b81eb847ac46ba0a7dd65998e59571ecd7ef546b7683388f631777015fa72f4e2463b4d193b8ab575b0aa8d077cbf105d25ba702f7c774572a60719894156141940a0a39e7ab838cb55524617826775b9ae494ad11213834dd86b1f02fbb5e12a932312f159aa63ff0817f8e4e478092fdfab946e5db0c05a0021374716d167cff0164ff823dfc39ec1f871233dbda0110bb37e8d5b4764fc40d6c7c62bddda525765a53385ead794d6442cf5b79fe14e2bf4a74874da68aab1507be8b31bc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x007a9f1614d062b255a27b83458a3aff3c81866153982a9ce763dcd10e908c44656c2edd264a1b61396efade79d80499058cae9125376748389dbdbad55088d1509c1a6614c57dcfd3e1cc47395ffd9ed195ebb60dab36cf6b6083ca10b49b791363970cdbd6072ae4e6ca782f508abf0a2d7ebd87c3eeaf07fb0c6158a16a807e1371e1802fa090ffb3813049f22e02054688c54a9d803f46fcc3f9576ccfcaa0c7f90b766330aaab3a4ae32134dba9e48fd6830b503687fba4c8053fa6a93b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0faee564e739a7e9d9b2eff2f35979f8c893d0fb5de5271e87ae9fe3ea42f0ba75d7eb1dca9693890de995b40ed7dcd600161d6fa0462125050a0bf369d9858cc893669f3984463d40af2547cf1a6dfadadada5f3c70d05b3b774b8e3683464a06a7830e2c2bbce87a8680b2493aa25aba646bca8b5b818a09581b7bb1be131e08c4168a043e45d56eb41b8b00a6507012cf7fb8520bf61b78bd019df07865c0b1d267e889b104551595f5034c798fc9b69dcfa5b9dbc6002e186cf9abfe0802) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x190a43e654201a22f136074d73670943f55d9aecb573265aeb468a3981be4312fb9a4433226bf732ee30785d96777902129caa52e3c917b52a5986a3a2e0988c5b4599758dfdd8b8024d4c7fe2367d32fc76daa9ff49908e166bdde45f92047916bf8dbb99122b1ff4c9ee86139baf105ee10e43b5f0498922124f3586b8028b7e625f823adbd245f727af481e8b857f066ff52607848581ba0b3bb234fae345836e721e87da734004ad9b2d5bd9c5715cf4a319fe1446fcd44d903696d7cfd9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x157ccaf298e6f2f5bb8181cbaa6aa328017941016c64cfa74cc3e00f5cf2869f3c8860faa6ff5311ea350683ee5ff7c60d1e6e4b821dc8a93f62dc44a51ab22bc7abf454674c71ff827a180c3795023d2b1e68a8e7737751822f9c4bd6aacf000bb75ab2b25a7ab7fbe14bb31ee654e403414daa2555f7b5118f863e6bb7e21037bab85dbd91056da6ecada4865acde118c24c9e50c23fdffb2039a28462907531ba502403a4b5f4bf319d9eec76986d5e6b1073c144c9037d68c1d5c1206346) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x09401247b0ec3821e76eac4d2f7781b8a7103a3eca47bff3901144b312d388a85e73784b13283b13c790a3965b3ee30608a825b98c11eacfc5a49fc7a4926fda4530a264726bb64b7f770b03a7e0d8238656e983d1d0b09e1ba8b3a2cc8d95160f471fb3849b88618aad9d3887c4f3c4caf640b9df522199e31874b4fe25e3d47ffe876ba7581c1efcb61564fef5de411320363b8068921585104922eac63d5c761a91febb3c59c692cd1f7af390c7a9b194b267ed602ca04f6649b7f1c6c82f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x11b8b6aa6be5808d466a05c0a081ad49c76b4981c090ec40d5aaff4f76769d2a40977832b891edb15c3183acd4ef27440c4d690d911c273a99fc02ff972e6065ba27e20963fd31cce1dad2f43262c7134505342cbb50986af5e2ccfd23028c140dac1d43bcdfb3db56a04a6ffbbefef37920745f008740ac0d203a0c107060da2c2d76541cb99106a4f6b2a92901f1c10cb83b3a5f8cd8cfefddd33e00e4d1aa74c943a630119bf7e9af37a2502fde14e9c7c7ea128d0d8ac008492180630b5c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x0fc834b3e22f165ca01322359f1a444b9d908bdda1da37c73d859166e28eb2d18f364766fd1a9ce475088f5eb87273cb0102e1732224bcd7e357fd147b6f41919b90afa7c01a7ad1067f39c5f216f067ad224fd70182fe8cadfb05d0f42a5fb5004f21703cb18754d8e5dc7fe79dc7e2043bc50f7a583f399b5ca04d8941a92165403b4d845863dce7da1cff98d461b91979c4dc4e9fb3874aaabdfdc87ebd9f5f45c21ffdd8ad043643b2804edf9be567c641fad3f5a8b2b6abb8d6712f998f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x160966746459617c6cab57b84381ec97015be3cc8478361f399648f49ce8c5fb3585add8e721ce81c4a352067dad40f30c5f2faa59125982009f01206706e6298133570dc4f029776abc6aca7c143059200a50e6ddb67a0550759b442300af52167c1420b0fdd70b2c44ab737fbd32e2c470cc29418fa553d502e8b1eb6e3878007aba165eaf4ff1b6743863895b4be706e1193be3ad7c6a3968c0d787989d935451aa17ae9d60568f4fb0507be96308243090e3ccdf3075faf8ee54c8a2f803) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x0d211843d3116fe2962e44424d5e1bdda2bc55b0c07a4eec8c0d417d3597faeb202e986cb03711e879f3286c8574615f14e779485d1389631195cce6b413184128352544968c0c48df886eb7284361d514dc38999f77dbf5d743add4bbecd4301288339cffd03d1098cc0bed90dcd583bec892c5f3c6922831d21cb8b7150c76ac4612ea5489c7476c1bcba216eba61b0a7447b1fd3d5383f5b2acd06c322ddfea84fadba0fcd995ec5ee701a34b9846e93974dd3cdcc5754bc7f21705b0b58a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x0e9448fd828b81168cbaa65496078edf4690017ef6628e6cc5687082f255a16a9ad51bf31cd780cd03fd7946ce0b14460bdfcb61fa233217a63a372380068585f7fadc6978213e87c1cec52e52c5e84010446b4197e5e15ea7712f0603627eab0076cc785550ef9de1693c46481719f089d33d320fb58eb5e68c63f7dd3a4a511268506fe949ea89b320848d7c5ecf1a03ca948df7b1fa4905fc129a50b0b6e61faf0b05912f0c3eb397089a9752a228cb881331f7d6d9b1e44bfbf3f9090f49) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x090024be3e658d797ea05cdcf404ba80847cd69c3585217310973fbdd59b3ccdf9bec4437325f24816beefae2c2986b6073d93a3d5f5d2758dd6dafeed80c6e730a512471c227036b0cba91369f2c1043e8722c1d87de3ba901780a0824ad90204a467083e873a87884ddb1b6455d36314ac953c47dc86f01221c97b2c70a62f24b852c291d49845744c1812b85a2ebf15ab172859a93dd93be43b59d784079bedf952b6596ec6926a22ce8511f503805914b72752b022bb32faf521764cb268) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x17a51f0dc1e6bf2aa154ae6d97fdbf0f9549b8a8257fcf4a90229f0a001715515c6fa8ac0a97537cd0c87c5722014358147d464e2d080e68d648a9b9e85ae4b1e5d6001f08dd6e0fcdfd20c6932534de458127c9c39322227546d1d2b898b613072f7375c55fbb46a4e122a7e1c45de6d6319fa2c487cfbc5547c6dbf82b38c81e8bb765144e997fab37da639a14a8f018a22c427db84499cd2bba0c736bd9da03cd183568c27741b589f94ad59ae372a6833b2caafdd088fea7eeb2fdc6790d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0101c54987955e4eb4a0f6423fd7b3a2f06ff5f2b98213529d2174c52b33f8cac47c770821a4133b7f153e98e1669f2f057ca3fe1f9420a22afcb783ccbc950d5e0c3c8a3762d66c31b627e93f9e169fba3269fc3cdc1e904d37c900b80254df10abedc8e7cf31a272448329518cf12c1cdb0edcdc5c895f841092a98a0ff37c3556cd079f0d821a22b413a56f55b6bb0de003bc4059dffd6153580abcf4b27b8426d9439e4d4da431c193f1d62c55e7161b2f790f4b31413aa8cfc1a1c45cd8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x157ccaf298e6f2f5bb8181cbaa6aa328017941016c64cfa74cc3e00f5cf2869f3c8860faa6ff5311ea350683ee5ff7c60d1e6e4b821dc8a93f62dc44a51ab22bc7abf454674c71ff827a180c3795023d2b1e68a8e7737751822f9c4bd6aacf000bb75ab2b25a7ab7fbe14bb31ee654e403414daa2555f7b5118f863e6bb7e21037bab85dbd91056da6ecada4865acde118c24c9e50c23fdffb2039a28462907531ba502403a4b5f4bf319d9eec76986d5e6b1073c144c9037d68c1d5c1206346) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x17e84dfa0ea7d745d5edac21925ebceab64e50cd3aac7bbadfdd0a0f22b53f529ca9878711942dda334748ddf03375ef16f3d4876216621270a06d9e98da5dce50f032593c39de8a5d8a24b5b161dc778ffc4b8541a5acbea543899d28846821151e33cd504aa31852e324a540cc4cabde2b9005060d2b3cd83891f4bc7dad1b790a62608ae8ba6c1922b21cab0b072002f87e1d6f2e2ca8707a250084343ef5e6559d5823cc68dd6f626d680b421997918442e03a09f6536cc7c9a778c2e6e0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x0c406abc6ba1e8c440436434ef7d9267464eff36edd585dfc75f577f365c9db3fb9c19c13e3e89c0a337a8b729523f32167a1833aab483ff1e412a71e267b60ba69b041aa8c5a59e6640cdaa6ff33e2a5bf1b60f32bd202bbb3dccc7aba613230756e1df0b2a0466aa7a27e21e9ca58698fbc22d840e5fdbc8cf1faaec79a41d833ca9d5f39011665fefcc17dca1390201d811237817821f0e9542d612bab688c8c376c13da0bd2c781263589a423cba089200ca81113526b8768dd3c737488a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x16c262c40999ca1e5a1e72b13beaa919bc10d08466df19e456a033684b013d4100a36ddb6cdc3887dd97e8db4b86818d08e52a91709b30f3ad36e2593789e280518ae5e4ce9821d378bcd7882f6f70c1a7cf9dd2d8b15f985f0c2c5bf08f54dc0452b9dde9a272149bfbb2a32c6a1f69f659cf130c30a27afd3fa3be26bd8989d17f2be11b386a318b6972593b7393c90c4f22e1ed7f148d35acc321c3a3ee2069e368ab8df3635dc5950258afa398228d4d2c53dd3c12bf1361623a69ba2fb4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x1487364b239f67fcc324212755b15f25999401cbd86cbf4a526807391fa6773593c9392810d6689a4a0558d89ab72f4f00d4801e639c8d4987569a262be2001af7f8e98ddbf41f37c054b21e1d6818a12f391dc206c558e9f04148dc00a530820fd747276d53488214eb0cf8bba8e4711a4c3c209078a01293ce06d900d3c1a3a2060a6bb9a8f94ba6896773ab2061ef0ac7f39533e34c6aedd26dda7abdb3e3489d17d1636a65017423a7ec696e4eb00bba6b15907b606c719ee4c3cd341958) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x031951f3615a669880243165f6eacc6f5fa02daca321907ccb06770cdcd9c92d368cf58cc4da05fe857e9fc551744c8201b4c54cabf0c8d0d8d49872393aecb32aae3b1a3441ecf7bf15bc1d1dfb2aece9ed92afed8a75c7508ec4be49fd8bf00059bceec915ff60237a600916ae589dfba6dffb71d552f65d80b042bcba249f906784869c6445303561565e0e17f0841977e319775541feba65f0600e082fadea21c5ab09b0f9f6c79cab5e902e3de712104ae6c254ebb000cac8f3dfac9726) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x013e98c54426b5c356a094af259f5a6c3e3a16dee1b4699157dcd7b4b3dccfab401dbf1b628b60293512b5ba8060c7b80f3360d8b7afc977b5ed76e640ede1cd785d0c021a0478d6be0f43288ad75dce019551110ab5d251bc6c789b8a4d9c74078c767bad0eb06bb1447818304a37280ffefdfd862b137572fc3e2131d03cdc89f2637227e7303e7ab685f87d5f386e00102910864b02ff09d9ef9b534486c11b9ff933e8d2445137fc01e0505986e28b0c4b1608e5cd646a8c5a63b4febd77) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x097aaa14ee186c44f4781526acfa3a83929f5e39c65ff1266b0133e18d4c6ad549087a2aff86235eb6080f2c6f4fe2d1046748aa1dbfa1ae72dd3116fb4ace512d11a4df272bf34fbddb6c8020791cfdfd29eb4508e8bfd54a1d8b7e16535f7904eb63f70a94be19eb06f2a337006b4583267b9d8ba72e8eec424a445b423118a68a0ea992345c8ef4a13cb68e8ad80b108e284b312f574cfa7afc3ab6d9598cb342807b7686c2326d4d7a257d73ed383a420287d2e3c38eb321bdbd2aa861e3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x1390ef409a99796aef7b741837f04ac5b0971436b71987ed2164e89950b9834257d50b1e1595e7d423b70abbe9ab5d33110ba5f262ee8cd728c8d20116827832198aa304fea6bf519d767260f947027f544903b9ec4ad73b0404f705ad1bb7e70b8f4bb943637d1830d31f24383f251ba5d64281472d5230fb974afdc27014af81689d5f830f17b76d4fe61b6bbe4a21128c6036642b9f636ab3215921545b3d886df46475f9a11a4ae9a173069675a4a02560a7dd717f7d204427a5b33563f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x10f1197dcb5335bbc9fd9b0ee96ed160c1d8cf7cd5a2c23550f75c7d41014328934594c87d0fc79690575e3bcad723ae094a72493ff86d36163129d59cff970820a9ea2a9ff57bba76aeecfc378e14941030b91bdfd0710d2d531e368b1959ef035d6b262ecfbbe0277c7c09758fcba6fe5b3f35f6d3e2e35b45f22beb6873b4e4a3b4293e58230ad4318313c3c6ef5c11e4fa223503b33cb6bde56d611716631b55c3307946a72b7090f12b6f04695f2432836516d65cf70e76dfecd47f3eba) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0568e06e680dcdbb2d68fe791e938363a7745910b3cb48d5b3a70aaa6f4e4fe2100334864bdd33033cec36ced33892cf0505e34bd60aaa951aa619535951ef24f633bc346797d240095e4826ecd461d6f8b0b7e61cb34a552f85ba7ea44ad32709f7e4e554d56b687ff494ed2d7dcc4861e1a67cb044a84327f9054b8e313beb68147d5adc70525b3dff7f358e864e060667f4ac5edfb803dee782e88cf9dad054d38b7192abfab52231b73b6410c2ad58920988189c07566290b4358d6696f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x09401247b0ec3821e76eac4d2f7781b8a7103a3eca47bff3901144b312d388a85e73784b13283b13c790a3965b3ee30608a825b98c11eacfc5a49fc7a4926fda4530a264726bb64b7f770b03a7e0d8238656e983d1d0b09e1ba8b3a2cc8d95160f471fb3849b88618aad9d3887c4f3c4caf640b9df522199e31874b4fe25e3d47ffe876ba7581c1efcb61564fef5de411320363b8068921585104922eac63d5c761a91febb3c59c692cd1f7af390c7a9b194b267ed602ca04f6649b7f1c6c82f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x0c406abc6ba1e8c440436434ef7d9267464eff36edd585dfc75f577f365c9db3fb9c19c13e3e89c0a337a8b729523f32167a1833aab483ff1e412a71e267b60ba69b041aa8c5a59e6640cdaa6ff33e2a5bf1b60f32bd202bbb3dccc7aba613230756e1df0b2a0466aa7a27e21e9ca58698fbc22d840e5fdbc8cf1faaec79a41d833ca9d5f39011665fefcc17dca1390201d811237817821f0e9542d612bab688c8c376c13da0bd2c781263589a423cba089200ca81113526b8768dd3c737488a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x1187c1c4a41b057967c7555492ebbf1901b3879b0c245fc07eed3d75b8fe214d27b4b192d7787dd9efb6144cafdf0ef319040d583646a66954d38d4d0aaa83cf4988fecb448ed5c20d0e30b0f2ebac49d6c35c62800271c84148960455d8d8c302f15044e389412d432389b608bdfc7251ccdc555904248b09160d12c7dcfea3f6d675ca2450a3ad01fee0db94dc7a8d1937a1a1627390ff2e1bee480e4cb54037c7b8836049a39d758ca6c4427dee464ffee79576c66d33e9443c7716a8d37b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x028f518613b138505c6d90b6e0121e01fc99af5cea6ab138892fd2b360212342d70074b5533f45650fc0b9393fb67b7a0770e4d54774c2d27c041f17020003719f9ae0e02d894ee0426cd065cbf5c637f1f2c64714b70deefabd21f9bff17bb900874197fdf56dc904c80dc3c13cb6836cd55be0d154d9385023f48813cc7d27b4386f1c357dd239962f527d4be0b2861261781e283e1fced9e8724f2047843ef1d2de89b8350f2ef0e654e3e053aa0aef768ea4919129f6a5eb26bb7c485384) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x10cf8ebadc5b77f21fd9ac63f34ffb8b27b266f816f1151f9d0b74bd20722b4bb5146f6635e5486a82ff1ade692851580e294b151f624dab1bb74c7666cf3183e19b41917c61a0a837d0f1fada5ff601f07165d9ceaa1e74eef48108161b573005083a3136786a6fd87a67e01eb7f228be41714f472dd977839b07e59481aa13dae5255ca79b7e3ccd8c3e94586b55200614032b6ce4e08bb441c880a202faae212322f211774073a531da09ce865b7f1001c1d126ef190071e29b942accd31d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x0466cc739385018a0585249bf02ca21644f56aee02fc8617fc0b7339f34147f994ab016068b77ec03025284d28cb334b033f3e14fd9c2c9acdf961d48b6456540663f504a8cbf28f40ac43c0d1d6abe2386810a63893fd69995b32078d98c4b00c08708b17362f86be1222a05cdeab17adfd8679f0b03d18c5301f4d07aa51fa1885e1bb32570189260dda42bd7de0f70d12c41a910cc32154f2d2c1320e473669a5b071bab634f561c2f0a98f72324977c74b7041757907d6441d847ca103c3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x170489c51747e88f11af77fe2d5a8e3615e99924a106963d8c34a966f643a7eb66bbad37c2c333cce34a9971f2ca87a8115b884e4f6c964127d3741fb6fe8b19a81108fb38135498dc4e582bfec87981bb814294c8a5e09dc7fd06097d253c950045ebff141ac9afd3d848fe89b37373978bf030afd38ad713caaa28ff9138d0bd0f6c4a323cc96864e1b1b6aefe1b850feec0b7f1b911f2c320f30411c33737251637803ba4ff4ef1fd480b9b98305a5a5f9ab4faa92b169eda541879af36be) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x1583640fa782fb3c949c9a89b95e52818fae6fa7f130ffc5a8304ab7f78fc4d0050b0061a8e90b29f334fc7168084f4810486574b450bc33691aca553a6aad3123844d39c265ff52e5dc66f0d797a80cba141db073ba767a1021c654eb1a316b0193bd94baca5c7c0fcd370532502b6ac4eb19b3d10a3f4a48bda5858a888c5df42dc9153e70cdddd7393fe381aa1c6416e2203e42a66b43189b3789270d20ff285e3279667e01f18f686caed2c0a252d306afc2598a17ed518acac4e8b1b7ed) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x0bd2a8921e426f811f8ca3820348cff6dc8efc095010d4068717724a3a076a565e609be3f1c78c4b37a61dda5259a3750e70265a91f14d71b38ab1df6f14ffc11f8ff8c552401dc1ec2a70862905724a928888ab5000cab2c206f147f49a9e01019581dfea445b53898ad37d69dcd97f00db2023fa4049a3a3fe3158275aab62cc16f14f766dd9df07852f7c5df27b2111dc81ab19b80f5842c7763b036090e3a8368b6db669d80e74c0231073a46835f7dcb34aab2bbb79faad55940977dead) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x0d81babfefbd132108cd4e247204997823727cd2267020d505821c2ae0d5a73103d40fb8c876492ce84fa43b7c97352202344ed091fcb8a4173325899b70122da54d00e67f3265676204f06d952b21d92605a7d70e1a9fb7019201873755239f06730064af9a494bd52ecb00250c317bf067df6a6eda21bc92c9adfe746b056e65dfc4badd22b832060092b018cee22a096f0f6bd5fb0218e1b3a5ca8119e6c40bef5a6dc9cc74f34517d3a8997b1e0cb36479ccd6e46b3d9fe2de3159d0e8c0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0389a5e8cda6286ab1e92f4c6b4e42cae46fd148359499b41e621d960892732247f291284f305c17377a7f703c804ff80ee8cbc431aca16be396de371af1f17959524dfbee3c6bde917c9155699d4a2bf6cc11bbe9c1393ce8bfb67d3765b5330d8321fb114c6aea1587d420ce7ca47126a75180656ed806d530302b35e3aaba0cec9ec31f94a15248c082c1143e625f1344754b953b5ddc1ae40f732696c6f99d900dc880a78c750460822ea36cc86e9350a25ee4e4d82696111477b18ee9e4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x11b8b6aa6be5808d466a05c0a081ad49c76b4981c090ec40d5aaff4f76769d2a40977832b891edb15c3183acd4ef27440c4d690d911c273a99fc02ff972e6065ba27e20963fd31cce1dad2f43262c7134505342cbb50986af5e2ccfd23028c140dac1d43bcdfb3db56a04a6ffbbefef37920745f008740ac0d203a0c107060da2c2d76541cb99106a4f6b2a92901f1c10cb83b3a5f8cd8cfefddd33e00e4d1aa74c943a630119bf7e9af37a2502fde14e9c7c7ea128d0d8ac008492180630b5c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x16c262c40999ca1e5a1e72b13beaa919bc10d08466df19e456a033684b013d4100a36ddb6cdc3887dd97e8db4b86818d08e52a91709b30f3ad36e2593789e280518ae5e4ce9821d378bcd7882f6f70c1a7cf9dd2d8b15f985f0c2c5bf08f54dc0452b9dde9a272149bfbb2a32c6a1f69f659cf130c30a27afd3fa3be26bd8989d17f2be11b386a318b6972593b7393c90c4f22e1ed7f148d35acc321c3a3ee2069e368ab8df3635dc5950258afa398228d4d2c53dd3c12bf1361623a69ba2fb4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x028f518613b138505c6d90b6e0121e01fc99af5cea6ab138892fd2b360212342d70074b5533f45650fc0b9393fb67b7a0770e4d54774c2d27c041f17020003719f9ae0e02d894ee0426cd065cbf5c637f1f2c64714b70deefabd21f9bff17bb900874197fdf56dc904c80dc3c13cb6836cd55be0d154d9385023f48813cc7d27b4386f1c357dd239962f527d4be0b2861261781e283e1fced9e8724f2047843ef1d2de89b8350f2ef0e654e3e053aa0aef768ea4919129f6a5eb26bb7c485384) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x0b089de7ee48558091087fccc178d589012ad887ba74494ae8f9cf9a83e4fe609d679b4dc9edb8d21051cd1a8eb5113616420b9bf9d9889b463ac6a54fca9758388d083d2021cdeb06bc324879e3295ca54fd7f52d28d074037fb004730923c9039674578c7ad67c991fe824b4631db3f2364169a046824142803dcdfdf6bc529b78528f27f72fe11a052b6b9fc199fb09f4b7f35160469f2031abf6d30be668820f018ecd195e91bb62909d9d3e7eafb3a6bb40321dca20db58544680915607) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x16b49b64c01860908a2c55bd6ec9a792bdcbdbe388163db9ebd49065fe0a8658a6bd1e5d7e08fe288c48f321bc7fc08b09dbda34423396476ad4ef81af816f8e8ab25f4c548e841a9c07f7a1698586477d79dc64e2a34ddd31d4e0b83aeb0c4212df349c91d43a78d9912aa35d94ad6943ad32954824982fe3d425606d6d2c90b84a8e934487879644296f7ddaf4f97901e4493caf0b408e47c095ad1c4393a22286e386f7291d736fa21813b8de5c92ccb94d80923e082db44f5ce306355066) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x16e0903fd39bec397180063fb1d34b97fb44a3964921a0f0e54213f80e2f1b0f155dc773281c2ce9c35a9841b4f0822f0f15d3e82d629849bdc901147897249ffd0a00380cf214be77bb596918134f31f7520971919ddbe94ff598096e010a86038fb77c5bc0ee5e8d04368d5bd7cc9ee3c3a149f8eb2eca49cfa2031666e7ba0e6d42940cf077ab82765503312e465b0f1fc38ea8e88f8724faf3b3ac9dca9e10c9c374f41875ed61116454a899d0aa413ff4109d50ed4838c3e74e5a63681e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x1242ac850b78779a40f548b2ec3e5dde33bf432def2c6790a8099096ad6933e2c7faa78bde8a4d4e2b586d6a4d1f4225062fdff88df3cb0df8d5e2097e53ce61b17e211c63579aa95dc63df0a1824ee36852af030034bc218b9b1ce229cb9c8c149807239b0e175e864c704ef55ae2cc2ec33c71186461caee8e7771c5ca4d2eda4388d8fdc15090e026b3654d049957114812fdd6b7f9fe01b98c1c03eca0b7fd62e0113d902ef37f3bc5191182c983251af153b36f478c3eac4d967a5820ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x16e6319ec68d88c4ec5d017df123af94e924963d7e62cff44ac709e22282dc904f8367e30de2cb40af8a237a9641e82f00a18451fe0e97eb1c88b8a05aacf8fd3756c4703cae982bf8b9af0f864a0afbe62feb1a532aa8f8b332168b6c298055179319c180a36ea2b55096b645e8c42f31cfae50884cb06263ffe11b0a210d7f3bdb1ebf2acfeefda47cbfb717487e870255e5ac63c4ec740e2a3aec2e5134c6ce8afd43a1c793c42abd87fe0fa93c578dfd6e5d604510e1a8109b4b35b172d5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x0d6af0671af039e4046dfa84fc7aef856495f732e95a24e0958b9729ca4b87ccf8b115ed6d1b60265b838116f5c56c8e0e1732e3dcaaa2c0a44c5f58a3e2cba84005b2aaf4fa70b995d8c30f5d0c25c0a9f3b6388ac91da8f7c4c9fd084917e80c1152762adcb783bc96ae1e2c37d6870a174b5cbdb1adf5adbda7d88671247471b36c9d5573ecebbd068087f45dee5d16925acf0e18b5adeeb1d4659f2f8df4e8af39da572e425c796f486ba67e05f3b7c15747f35781294128e32cc66ab87f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x178fd42698e846ab09f28e4b945bf51a573a5f67b01a50e7de386e0c2cfbd4d436ca77d0586aebfd3ebcf0cb03d247d600f2b025bc852bd51eeb61f0394f3fe553a2353272f8673a1a1720bc472181d16f884dd78bb17b080f693bf1ceb139430d2786584df371d15ab7529aec1fb1890818961979210babfe275729d11678117629b50b6971a5734844c856f1ad4cf909f85560e3a5dd049dc357e6806b2ccc8661032eb206cd718e27fa266f7e2f86240e655f72538936185697a94c122f7d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x041d34c5ddef9ac443dd7848cf29d87c9ee93f9a1433e0cf214e558e93d488374812a9d2b43791e8be6351ed6b0c8efb04bd817bcbf3426b059e7d0905931b309d41e46378a62d0ae0c335d754afd0f4aad27ef66e6cf81883999cc3e19d5cf300dcf814ace1aff20dd3e8cd77392190663679a83289becb9cb669b4c04c1328d11147e928d96e42272815b91d0602931219e805b8d2b35c3ce231c6ff70a93c3100b858e55e42c5f797fac45ae2c19b6afc3e9d4d3d24e0ccfd3ab23fdd973b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x0fc834b3e22f165ca01322359f1a444b9d908bdda1da37c73d859166e28eb2d18f364766fd1a9ce475088f5eb87273cb0102e1732224bcd7e357fd147b6f41919b90afa7c01a7ad1067f39c5f216f067ad224fd70182fe8cadfb05d0f42a5fb5004f21703cb18754d8e5dc7fe79dc7e2043bc50f7a583f399b5ca04d8941a92165403b4d845863dce7da1cff98d461b91979c4dc4e9fb3874aaabdfdc87ebd9f5f45c21ffdd8ad043643b2804edf9be567c641fad3f5a8b2b6abb8d6712f998f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x1487364b239f67fcc324212755b15f25999401cbd86cbf4a526807391fa6773593c9392810d6689a4a0558d89ab72f4f00d4801e639c8d4987569a262be2001af7f8e98ddbf41f37c054b21e1d6818a12f391dc206c558e9f04148dc00a530820fd747276d53488214eb0cf8bba8e4711a4c3c209078a01293ce06d900d3c1a3a2060a6bb9a8f94ba6896773ab2061ef0ac7f39533e34c6aedd26dda7abdb3e3489d17d1636a65017423a7ec696e4eb00bba6b15907b606c719ee4c3cd341958) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x10cf8ebadc5b77f21fd9ac63f34ffb8b27b266f816f1151f9d0b74bd20722b4bb5146f6635e5486a82ff1ade692851580e294b151f624dab1bb74c7666cf3183e19b41917c61a0a837d0f1fada5ff601f07165d9ceaa1e74eef48108161b573005083a3136786a6fd87a67e01eb7f228be41714f472dd977839b07e59481aa13dae5255ca79b7e3ccd8c3e94586b55200614032b6ce4e08bb441c880a202faae212322f211774073a531da09ce865b7f1001c1d126ef190071e29b942accd31d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x16b49b64c01860908a2c55bd6ec9a792bdcbdbe388163db9ebd49065fe0a8658a6bd1e5d7e08fe288c48f321bc7fc08b09dbda34423396476ad4ef81af816f8e8ab25f4c548e841a9c07f7a1698586477d79dc64e2a34ddd31d4e0b83aeb0c4212df349c91d43a78d9912aa35d94ad6943ad32954824982fe3d425606d6d2c90b84a8e934487879644296f7ddaf4f97901e4493caf0b408e47c095ad1c4393a22286e386f7291d736fa21813b8de5c92ccb94d80923e082db44f5ce306355066) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x16e8f7907f9448d12ff6d2d5db462cb603d3d65691f00658b5da524caa92bb3a97451b1b56acb7f5c205394ea137bb700882280d8881d6c6323ec438d423f5694fd13a6d4cb773764ab1aa5f4c451bc112d6df349f4d02bf2730536821d52ff60885014b74ff7058fcd203adbed59e0d24b16f1b3114f1f9eebdab2d5c58cf404b1f9bec447f2b1afc9afa76859098ec18796fa8fef1fd674a5bc23dd6204bf736855e123e46262e489450018088b134dbe70459ec525945d24b619d857bbce5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x01df9017974be93b18af1de7f3bd83623bea55a23a588f529c1e58cca91103e9cb5e865160b41f1110bb2163f66de2940f84486ba56622f5cbe0d0ae166fcfe72231aef90ca7f9905fa797e536a7ad531c67973162a136059a00a6e6825797940a3383f4163365349e112037a963f1de6df3e45f1b58205a4c18cbfbddfdcb10ffc271f3239aa288aacf7f16650439d415243fe31938fb300a1ff3aaf17d18ce639945ab4698d69a160813f267f2eee0031dc6bd3975944f911fe57be6cd56d1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801' -storage - (Some 0x18b4558b569b0e5b227388c9d844dc37bc0ad40ee5d5098871d396e09b7f85db50b78b2b33fbf656d02e83b45d04962e0ac8336661fd1bee9f074f35f3413c81d22825c469c70afcbfc724ff25750b7598493ea501e5ee79e0fb2d1e8fb5ee9f0b95aa27a6f20c52438ef3daa6f03c8bc41db48fb24fe73921425b1b4906bc60ab7e4b4c290f3c5aeef9a40f094e3dbe0a031822e3366d77078f5e93a80f8035f6f2941593f4f30481399f91431ec85dfc81ce11b824e9b7c08da1634b8e9c83) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156' -storage - (Some 0x050db0ea21b45502d1672a82bca3e6305f8a37689460f225920f4de664a9b3df4912f035314ec9b35d972ba67a522b8d11031b259adaaab72858a94000b15200254698fce139fe4f647a3a38e759144d7c7a12fe263194e3443b95f0e863c9f804ab9bf6e3eb7dc3515644dd29e5572f1ba34a18feebd12da678d35fffeb65071d18bb2dde6b6e70fbb14458e5adee12113aa6dcc7d3f7c25b84031fef1ce34e8b7eb8921b9ccb08d7a49f4c54e0e2cafe9eb9a009d86f2d118c784848c67db9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327' -storage - (Some 0x0a300f596c740d3a332118e868fb8a0ea04688ebb394489785ecebf2739443b346b324e3fd9246050d0aa1d3aea9f1ce0ad93338ac85b6a66c0f3fa35c81ade175275570facec6395631a1d5a977afbfdd44dcd174d2d782105a1503d25e9baa1717a6f3d40df12d5003fbef8dd4e176fdafd6c1bf5e62908aa160ecfabbc1a9d608c32417a1221d589f70f5335603200c9e15e9288f7fb90cf7101301dbfde0ee2051b698310f855b1d876cddc553d4ac3a88f8de8a99d7645595b4ee64d3cc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca' -storage - (Some 0x10875427dc85c110b01f3bb782936f27a8cd5466fa0f0cf5917befb74c467104bf0a2fa605d465d902e1ce414f571a000468b7ccdef205be10db5fcf6c3d935f273a2f3bac6329c30c1d5493d77ab1068a93f5f3a93de9a96e57a77ccec573f413c396a7d9e079253c98302ca3e10dde046279848c9ae49e24b14158f9091e84bbcd61e13f09b57cb310a4c6a973acff0836fa3e258df34ad0c89e7b280e92f00acfc220eeb5bf8647a30d3971f08987f7191983a45396d68454d552c903cd13) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5' -storage - (Some 0x0a85418bbb38c1ebe99c3e1b76e509a9e765bb876c6a567b12e1e07d80a45d8de1aa9d6425aee533d38c716be18e4cf5123d60d85aa0d15271761bf6fe5c75d291602d0bbccaf7ea30625fb18f4f2012286abe933de82871e27bc995aee08ccf0a4a905214907b3ed66515c29319e705b2892d1f54eeb61010cb68a135b5c0eceebdae1f3e510d49223a79abbd1e5ce412f38eb5ea519c65f950ac8b4a274ec8d2742073d4d4603f050c8751202830f8d19465fc6024a4d52c7183c47be42325) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732' -storage - (Some 0x160966746459617c6cab57b84381ec97015be3cc8478361f399648f49ce8c5fb3585add8e721ce81c4a352067dad40f30c5f2faa59125982009f01206706e6298133570dc4f029776abc6aca7c143059200a50e6ddb67a0550759b442300af52167c1420b0fdd70b2c44ab737fbd32e2c470cc29418fa553d502e8b1eb6e3878007aba165eaf4ff1b6743863895b4be706e1193be3ad7c6a3968c0d787989d935451aa17ae9d60568f4fb0507be96308243090e3ccdf3075faf8ee54c8a2f803) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c' -storage - (Some 0x031951f3615a669880243165f6eacc6f5fa02daca321907ccb06770cdcd9c92d368cf58cc4da05fe857e9fc551744c8201b4c54cabf0c8d0d8d49872393aecb32aae3b1a3441ecf7bf15bc1d1dfb2aece9ed92afed8a75c7508ec4be49fd8bf00059bceec915ff60237a600916ae589dfba6dffb71d552f65d80b042bcba249f906784869c6445303561565e0e17f0841977e319775541feba65f0600e082fadea21c5ab09b0f9f6c79cab5e902e3de712104ae6c254ebb000cac8f3dfac9726) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9' -storage - (Some 0x0466cc739385018a0585249bf02ca21644f56aee02fc8617fc0b7339f34147f994ab016068b77ec03025284d28cb334b033f3e14fd9c2c9acdf961d48b6456540663f504a8cbf28f40ac43c0d1d6abe2386810a63893fd69995b32078d98c4b00c08708b17362f86be1222a05cdeab17adfd8679f0b03d18c5301f4d07aa51fa1885e1bb32570189260dda42bd7de0f70d12c41a910cc32154f2d2c1320e473669a5b071bab634f561c2f0a98f72324977c74b7041757907d6441d847ca103c3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7' -storage - (Some 0x16e0903fd39bec397180063fb1d34b97fb44a3964921a0f0e54213f80e2f1b0f155dc773281c2ce9c35a9841b4f0822f0f15d3e82d629849bdc901147897249ffd0a00380cf214be77bb596918134f31f7520971919ddbe94ff598096e010a86038fb77c5bc0ee5e8d04368d5bd7cc9ee3c3a149f8eb2eca49cfa2031666e7ba0e6d42940cf077ab82765503312e465b0f1fc38ea8e88f8724faf3b3ac9dca9e10c9c374f41875ed61116454a899d0aa413ff4109d50ed4838c3e74e5a63681e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18' -storage - (Some 0x01df9017974be93b18af1de7f3bd83623bea55a23a588f529c1e58cca91103e9cb5e865160b41f1110bb2163f66de2940f84486ba56622f5cbe0d0ae166fcfe72231aef90ca7f9905fa797e536a7ad531c67973162a136059a00a6e6825797940a3383f4163365349e112037a963f1de6df3e45f1b58205a4c18cbfbddfdcb10ffc271f3239aa288aacf7f16650439d415243fe31938fb300a1ff3aaf17d18ce639945ab4698d69a160813f267f2eee0031dc6bd3975944f911fe57be6cd56d1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/add_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7' -storage - (Some 0x110594337db827f5e6559d35aae9cdb28a727ad4fe9898737fd454a50ccbe28f152f6c9f3b0dd66f462bc0199ef204290d6324c2966a07481d449176f51464e6fc53c2b8ca76be490abc0df341587a719fe4131467ccd4a0ed2bf0bd993f7ce8192c6afb17be170babe59ab1b52ac010aac19544e888943ff0257dd4da52ea75b0da1ef7d8e2a29a28b506b9d9210a2b006dd5994ae3b78e81b217d2750caa0d29dcce23ff7e697403fa380a7df279a55a42bf990c10b1eb54a20b86f2aa97b4) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- mul.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- mul.out deleted file mode 100644 index 59ea5f063df7..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- mul.out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x080b4550187f35017cdf7084f2427586dcc9e3bb5f254d3059b1d0e9029f7a9a12f1f34581992dc99d26fbadb8a4bbf6184cf390e5a04138711e8b47eaf2ee31620ce75d15b8eed650b82d53c69363866953261b50f7cfec0bfaeadf87eae8050bf14d3e8b1914bd903f0044d4bf550b6b76ebc01be4716afaf0b4b1ebf025a979368539aa65ad9293f18dff874823eb0f58f4f1d138c902a335a80294c136517438ffb91545268060711734cebbab770e34ad18ef149ac3e4fa884ceb4b7443) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x00bc7bce08dce7ec829d7a13ab2faced9e717f30c7370b8d6cc7b1bb46d1898f0743505348d83ac3cefa91dfba9b0b230f62f20c8f71df32769d5b49c1a4cde32cf8f20a05ace136e4dd9737baaed000bbbca439f7cae438f3fafa6f3c599f250d771456237dcebfbb68264c96599e9c949ea7a425021f75a5e057472ab9a1ee30bddad75b57c0f2fdc436daddac8b7c0b022e6eca54d3cdab5fb2d33dd771992047dfce1146c59036f3ce011800e2939721431c83f971237002a0d555d62138) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x03a989f5e9c957726994e2af30bfd00313c8c1af1d9e6f353bd179d403b6221bdea2a8af62bb98b5982cc551699116f20492bd7a87456de1222bd45fb4e85b426a4db0a4581a2ed86cefd2d15ecd81873ed91f70db079866a19d399f41b648f813b5c3a67ba6db557ae831299ece46ab98ed6134014019675b885c3708f7bdd99ad3d57756fe2084f7fd0df9cd47027c186174431b56442231350b7facf00fb9ec214bc9af97ab093573e97dc5838d2b173d11b7cd064122607263fa116d16da) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x193633a1df3e9c976d71fc7d3fad74918da1fad919ca9cd1fc174886d5966cf26b17ff31641ba949d1b6ee785916d9ba0344ff7dbf56bfc10ac546ed2dd0a4cd826a0d1cddd189ba718c15d4adc35856566a85b09b493c91646213821754c05412caf16bc7366a6dc39ff27e8b08fa60037b50b6c84d2b51986fe5f2ba76ffab43fcb6a0cc79a07ad777549e38cb252407bd677f34d6e810d8cc5dafa0f6503c5e0f09ee20f561778a83491745727e6da8fa3f378d4cc6594a3673ff04ec8303) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x088b49ac24b1bb213a8f5928cb16fb8bf89e44bc2b6781ecec6d32baa1ac0bd0efb4beb89df3561434065ef6e9de873204ea33f8dc13c9a07edac755fe0137afd7d2d1b22b8d7577275e09c96a3e5d92a97148806d9cf11bc2aca2dbc53820c20d8d042fa14b47ff7b93784298bba93a50cfaa9a79d875dcbbc108d8169ed51ae4795c819235d95bc7331befe813369c0b1c68720930a710e635afe84a99518bee959921b04116b95076f13e5b9e74629edffb119900454ec11087e0b6305b32) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x0e4970556f8f0393b84dd0acfaa48537287b24a4d0c0a7bb1715961b20e179d5b95e97e8aa34958e71ddab72c04e2b921678b10e90e34486fef2db6785da364e836d37b9a214a35d3252c3dfe9277d4df333eb9839d437e3e5fb18bf67d74aae121289a9fdf6fbf2edde120e5b99f8c3b374ab7c13e1258ddb115d4b08680d9f62d5082f27bbcdbfd7512877c630340c09658ceed69e7603235f1fe2b86c6586d7595119ff74892da6f5618f4bb6d9e1a6e17fb3620a52826e4cdea473976061) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x080add8f0426f9505b5fdd4e17acfd5ab4c31d5d3e4cc0ecf91ba42598b3af9fcda50cb6dbcd5941c643d70cd877bcae0fbe1d50a3275743237fe7fd82520eb1d18c4eb32ce3d573a97bdd5f48af83c0ae02dda154df544f3456673ab943b5c8047efa1153f8c6b07bcf1aac4073f80b4d8e39bfc6b1ca2ec75f240bb1213a2c2feff0707cdc78467d39e9070c197b450bbea0c527b83f56af225ed946dc98e55e57ce7e6c9d479bcdf1f62b86dc7eaff5662878dc04dc20df57e67d5a06e1d0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x18cba79a989acbb00d64a7d7878cf2648874a1090d3e40b518355b1a384f48b4027f810dddc5be647023f666c4bde527128a028e952f95bad52b7cf076e6ca99ed5f8160848fcc02eeb780738ef5184a92cd8bfaf8c86c4b4bc15b5ef37932461114fc7d7203b105b0a609ec1770afa3a4a85b5802ee80e115d9f121822f2330db572d79990dbd58527cd13b703ab34b03a57838853edcb170450f5c7c20f61ca97bfcdd223278b9eb7c556a15ace5e959f27a67894d9af41821bc26ce2dfc42) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x09b08d80f11c18eae208f0cf4f0a3000a934c67afe4d01ae1bedd78c86753e251b210b0563ec9151004941601b1fcdf304285333862833f83569e4a6d769c740a4fb256d401d6cd475a6faaf06b3cf8ad2c14c8f00d29f268c050dabef06c9ac0aa45b530cbf92516bcc81b9bd662076d87dd7870aa4824906f61d6186b68925d96062b1a103463f48bce4fc8bbcf47e0aff4b0b2f74e46ae06f8b40991e6b13516396e264fcc78fbe7c94a68e114d6afbfc386ae75dc29783fccff5f93deb77) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x1647a67d6a6e7b6d058c4acd5a8d075fd6613bc63548109a74eb74e79f16ca6c73315d18492d551785fe7b53be40bec0004a62366b5f7167743bb723b6c3976e1cef9a55e0aa37578072bd0dba2079396a789044a49c631d879311efdcf2acf71184e8de0e688e4ab064d54e59e53aca91df0c3db5226d81b47ed64e80c5a5c6e5184490f59831bfd6acb491e39d056c0fb00969176fb34217462f4284eaedbbcf49dc0e00af5e6b20a7eeeb96f68ee9e629617ce7a6a593313b744df0d0e403) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x08c4b1133fb04221ec4b3c6157b6b3b47083f68737d0196ea6cdc2bf2e4cb701620817b0882027c0983671e11ef124e70c991a592c11c52c5e9e39c33532fa3affdda445eb4aa0912e6d99598cdcd0fcc725c2671ecae0b195882ddd122906d601d0a7bcead1c48603b7ca82f171181e7eae23937ee87817e6eb1ff6df5103d1a9c7072818f1fcc3796431797dc0aa5117b918e1f4e6c0a2a868ab37dcd6d16c4adab33fa39f7c2814c0ec4d6cf0a944a1ed86c87f7e93fab9861b99342ad0f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x00b50d7a32f7d7161d1a64152001ce9ab734ce2c0bc15696e01b10022181df0842d14f91b652e8948cce811bcc1acd49032fee6edd84bad1a73f3c3720ab052762d628c53c0fa2385962fe538020ab3b657b6c647250159c1957bb58d10749e70e0d05f6a99698dae1b40d51853501f258f94caf25bdfe9a9befa4712f77fdc976f5929a856601f41039ae5747c13ad516e231331ab1067b732d0d23550cda733e3202da58e7f00c007d308595cf7309c73f1e23ed8d7d61508a67d9ff8160d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x0a5729d3b49f1cbcea57a0a92e5156ef98847af34fd33ae5eb765730d455a754e0c163e3056944e07c883cf721ab151c18dc99c67cbf6ddfcc302662351372eb48150e7b9d233ae186690d17c36845c1c96ca58d5b1ec41d45d30d2d0523d98a03c295377a2ff5f1d694fb5c164a52330419bcfdf0e5f6d5f6f19f1a72c498cedfed51e7ca305879b63b49fa2a3accb912198ef4e8bca866b50fa5e8a753251e7ad324d4e3975052c24511c7db961d0a3ea7976d55db24e8d7d388403f1c71ec) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x17142c63772f51b91e3d71acca2ad4009aa42612994e7445f18f86f8a73abda7ae73b446be7c0f075675e1d137b8ec9e057f9e6b6aa1c4717a16ffc11a809401a18ede873063be42086e2bc8a4b36d6d0db0057fea2cfdca1a7d72390540b7c41638b5d0959f312f0b2fa27b219a41517db741d8ae5d771d94a676aafc8804b06202e92f30ec226fa6113650568d1c7708810cc0034b69645975e44a5bc741200ace0e4d4dc8cec65848c183e4369ead1e593a95e632cf2929662bcb732e2d7d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x017fdb444d88038e81a39c56455894927fa3444988b7cb56e79c3c75ce79681cdc0712622fc67d8461c6925ad806df130d6cc35fe316c3160c28a9282c05e3b3e80852bbf0d723e4e6304fbfbcd38cce06262dfca36fd0f72c04c502e54ac2c401dec7da47b690d2f4ad83163c384c311b8c87f8c3b29241fc280404a0eafb5021d562d45c234f38c3414f1c837d9db5061773f5102baa93e1b9f1efcafbe4519988e1996a2db13ec1d21e54d7c53b93e8ae35238854325b92d33f2cfd288025) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x16bad36d376c426b40fcef1d965b4611f5db43467ae56f0ca1d3ffbd239e951891218ad2f345b81b5b66aaaedcd961140684a5e081214f5a3bf55631cba5dc77c028b94a928383534fd3d8be6ff0e46503d0f9011bc65f09d4ac72f65dca7b4005b8ce787c8676857281ff7e6c2737fc8cfd47a36940744c910be339a1df4cee1aec93c1f7f0098a092550fb7ffd840d0ae3eb05453b4b44090a94c15caca731c6ce2b2e4b6414481dc20d170161d0d87154c59144b9690b8835ad60810438c0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x09ad873d26b23277ba021484b9299c6195b793f731d115dab378499db3259d471ce4600bc45665200f57b5706d16d3eb11c9042d0a78e40944cf028bfee568efb0ab6c13687fadd9b8bb139c21192c89550baa342877c80b38dfef721076056c0264ed93a026c52c1e102387b6f153c3163f206a638844a71086f40231281aae250e4cf2cfa99018977c64ea6a879ddc11fd3d07ef91f2a2168c02d071d311c90374e6a80203df70d948ff84180422bf45170ee34e673b71f3bb6ead5bcf19c9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x047701757c7a80a63adcbabf9b74040a28c402bce12bde5221f2aafc940c2c9b3b0c47fd8a8357ef17fc9ebdc248e93c0bd70fcd5398a637a1c746878e24825764e46be75b0616588683975fb99c7ea9ef211a462b9d991ae513f6dd6ce0c81d171a92cd782de9187726ac071d725f4a02323e08a9b6e75dda7b83dd0a6776dc1c14d4c245aa9c9560613c806389dab7174068f0d8d538b9f8e08542c7490037a7d1030c375c9a3aab4d2adb661e05b4ddfe73c7903f4c2e2def17335c4e8a2d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x0149d59edda997bea3f012cbff6d8ae6226da88fa75f0cc7a25ca5834aaa59b5a05ea0e758b7fc10df3bff61772ea1b114017d52c5e30b5b6e242137ae0565e2b0889980360cedd8bb7f6d07aa8f0f0e789a1a8bcb1e08cef63fee9456d4184d1231ec9fd8f71543b8d4ae7fc7d48775c874943f5025da80af37ce8b180819d2c50f438dd3f2d514cf0e1ba1a3a49e071057eb1af4e1c25fba2a9ed9006fff2799d201783d663858de05b679aa96b53cd9fce55cbc4696272cee0778d4db6ae2) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x07efa8f19fbf8165f850220dcf16a05239b9915055fce261f5dd1b109e64ceb51f4b8d23f571010c7d6acc4bd00bcbaf17b540ecebb5361c99a071f99e5a209df25e8024379cc722e0d030d3806dc49635b8c47f311154822fd30ea26a3e655e0952c84306362d3673e70d274964d12bf7d4871f77af3e7808cd7791d167783a30ad682e2a0f22b18bd49dde86d5a7ee13a27ff6eded20209c21dfc885b9b00935005aa1cf3dc6aec890d3cf3a98b555d4416b977999bb0bee0b32abe5d23795) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x171a38d9525ccb3115bde4d0f6d68ea0dbbbcaab7af24807addba4d2e3e16777f223c67a02d5475b4262bf90c63b02e600a4a8261c879c3d8938421443d3e881201be559f97292f6cef8af4edc5cff142b4a5b108e2cf07e2a5c99447e4f733019ff4b5719f6be0211c7cd1fa099a4c2fd3aa64ec639088a09966093a4f752dd1308ee63d99a93885e26e79911b85f8106ed5dfe89c103266bc588857db762c4a31b443e4721ca30c7787466c2be9e7f715303ff0d158b6118af53373ed667f0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x053d026216b40027f403b10af167f41989cfdb64687d997aa23e71d35062aea7a81356fde64e4d01e7356113e01a36140ee9ab3f43f8b13656d44d7cf2f4657d390ab0f12630078c6078145657cdada1fee6b105d34a2651f9c2770e37eb95630db82bd7a29e8068d7dec583ad46a49ef20ea77ea38153102977f5808c925817a146701ca5e673b09ebdc9d430c8092c0596125df4862ebbb9f312db3d1768e3d391da136cff325c58e90d0e337b3f18071eaaf86c2fe5be578cd4b48ed498cf) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x13937ed4f44301346c9fb71c0a598ca90d8571e9dd30e1d93d1b45f6cdc5c38d84ccafee0b81a6d70ada8e6f80b0aab616e9bd224c0e61528b41bce5dd86d289bc689d4ddc8fcb8f018e19f8939a897084123cad133a0aa332ecf59bcad791af075e5e37711c5e96485a897dcf82d75b9e40c4bf58ef4592570e7500f832820840f12047c5e7be7c40acbdd89faf0d1210253d1dc12130e420d0027a7908b13d827d1503ee0b8a34582910e1040dedd8601bb64617aec2b04e95e76356dcb220) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x1447bf58cf98d93fe16ebf1617f430d45ba8ff259bc609277c6d196556221ac8299cc865a4fcdbfe69a05221913ceb8e1904cf04e98129d25f5fd1b990c21ab4e6423e88f7215b89f21ae4f6b979773d2d43b33714b56ebbf75f4a0e8360c3a519280694e6f8ecb64f330f6c1c5c0a588c2468d89f661ce5dbe2a5a9639fb570ead89a4788b0ae580f9e417d5331a0e001b1622cf69c3e0c610ab3a47d29bb331e22b556a820e8a8206abdc91e1b258c44ea9644f3326a307aaaaccdeecaa948) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x07c172e7aa78488ff62ee0d11fd04615db340331de14f267cc87e261ac80df4aadad76852e755d0e7482b93cfe5a5b08102c9fb3f178486b9353e651f74bad37c0c2bad1fa61dced79078fcd6abf2aaabaf282619d6e1a49e63a2682d1fdb12215937a571973ed76179f05a66603d0dfbddcfd5b7459f75f04bba328b5cb76fa61bebd7034c10701972e40330f9cf27c0889cea90145991551ce64dcc3d7815f80ae4e65c2b77553a5ed8ec53a0698671af0834a8e1636e9f0da7cda98ff636b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x0568de4c43d5ddf7eb997963cd82935fd9cc3af0d8d26775595e2812293ea37d1c02bc2803b85b0fdacdad86f74c791d0017e526365f8d83ed0924745f66a14b306525ffe620d21da5df3da7f62f1694106f6097deff1d706b808320ca4df1bd1377f807008711e661d0ec7ef6c3eba5c4f1534c929e7f5afca8f2ab90e7ae0468623ab3f6e3def665281b5bd8c0fd710eb711619abc8966487996d763a0f0db66a5f898b227bff0c22c36defeb02a90a2a4f877962ca0b7f7f2c6c834e2c1f3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x0a334affaedd9118d8178f8d0fbb0e7ac89fb2dc000010668c9a4b65c66f65f3ae1aed9609cfef7038cd751949f04fc3115ed42575eabb4efa41b024775f7b71bf308e96efac8bd7a41c79c0150acd5c87318792c08ff2d23d8ccc7c189be7e4059742373637643e00943aaca573ecf667808e1ec1f7bca0391ce8f563c1efad8a9c65238e2f566a770fce14ebd9713506845dcc04208b5891d2f78a2ac4f6907f49853f25cfacfccb5bc95a97fc14945ae83de1166029ad5eb413cc7ad87f86) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x11e1a76b036b8845ad620367a792cb68a28ad8e1bb75e45f27d1d6a4fc92418f24030044ed1ee7bbfef133c8713931c619760a3ea671e13fa50424ac21a68d8edda3eacf807591a043cd9a469e420175cbbd8b6dc6943aaf57c9805c4f214b6d083d6f014f9f7a5fdd96a5552f091cc9705227dfb9e6c6ff052ebdb732ef5ce9d131552d1dc5c82c2880c1602ff8b223031313031dd4d0a71f70142a427e97f88487d2452acb85606d9a232dafc9a565895b095ded6514d128d5d182845d1d78) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x06c280a9a9a8d84441d3fbf1983c95f88ac6935bff9249d12974b5285ec180ae0614986a486140531ec7a201557247a903cf0d5e18c593dd71d0ef1af8adc98c3355817ef9729e2f438670ff4785618715fedbddf2f73408de48558293349471051b051f18077c7ddf5cd7c72f62395ba09971a60f0fcf9808875c7c9ca1f86050c85dce4013ba26c4170a8e63f9a4200eef8e1bf4cd1575cfa420a06f80b64fbdb927d7fec9b7a3ec4a9f40fe2bbb555b275501837b3145fece9eabf06dd9b5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x001fd17b0fe25eea2243b80db443e23ffb66459990d77f0f8c0daabeec844cb9d85665fb709b5fd44f91f87145af9ccf16ea4f0971c551355bb47d42fcc46e6fb5973249d0277ac3a36f79a04a422813a4b47ae6108f8f2c18d62ed2a5d378ec11012d4d516690abc205018c2c608be3684c69ea203dc478fa648b04e2285127ede6e2ca17f0f3de6f84b971c44c223d153e69505b2f41baa98d0f439dabe204d9b7d211ceede384000d8ab5b7b0d5c786b251535866ea9b79f0efdb794bab43) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x0dfa56f12e588e47e1b4a9779b8ba3e1f8aec6332f000e1191a3a9241db421cd2bd1f2674d1d65971e1bae15ac85705f02fe72dd8919a4ffc3f6361d41babb756ef436be44daa6564b2cddbb3f677373716c3f35b67aeba6e95a807753dc93d90eb26d4246ebc61132846d3f607a2644843ce7db26502d37a230609c0000ac6bc31cab911936b99d784ee982b986eb74105c50ea1e8ce885e4e0ae92e62235561cd21ca69d561b4d101b2c8895953c3261ced4d643804315615a625ec96199cc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x0c6047ec6e415dd2002c6d88d79fd756aeebec12890af2a4ef3f21786780aa4b996bdfec8de8df72930f3eef7a382e2a070dde3629e78565dad4b5c5909162cf678f0170cb8501d89aff66680d1a53a606a2d92f08df9816f6434cb77759c4f11778fe8ea72b96f3d3df2aed12d24dff9f2e659c326dce50af40a20a1fe7a5dab949803e191aad4b6bdacff2bf3257050b047d82cfda72ad42046998afc22c26c489b194ca6fefefdf34c763cce8ccf5dccd1c25e97569d05da0379009a06aef) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x0b21cb653932e8b05d8c935cd449b7d9382a2308e98d8c085d8c9ef183b6d3537195dfc3db8290321c54113c093b2d0100324822826d7108bc78373fa2bf6e8b7dfc4f56930915326a2f853fff2e66e427f18c761901158089f4534f0bb1103c0edc38f6e800b500c6e2c88c15c41cd1f4f9ca108b670123adfb6e066764c8671dd938eb03cc2cc88afee79e9c395e330a9f3ba8c8ec05d2e08720f45d77ef44a8cd254fd40967f28aad7652dc78346fad87237bf69ba6d49e9de50f840cdc7d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x0ebb4389d50140ddb952b8a0ca2ca472036a267c9f99445d7801abb8e0da3419349b7cd5758d2db0434afddc084c3c7f00d145002298452006b323697911974ef5d9b40f2bac4b304f8e512ad5df8fb343e8da6cad115520098bb1098a0a6e2411e2da3956a9d744f0ea464e4fddb94da23465f4b32e8bc44eeae6fbda605486b7d7815d90a40c21666f32806d5001d8133682f3236ac2d3d82c4ab48d48ee99180599b3af7723c6735443c19968788d6fd38b64a67f086175c237c4a6922a55) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x05deace89d55b9e4314b5fb8db2bcabcf8dffc2933ac3993ded7a9709b76fcbe58d390f57682928dd9ddb19524ec7c3b0142884d73c1ffaa7ffb201ffe573821ae92bcf1fa318655c2a47f7350e942acd70a014d5fed155e0ed9a815389da22d006b06604ca750ab0041de31f7fe5affe41a8eb5c159ab487cbcd70d6c0c393180acbb9c1113a4f72849f0e301db32dc047958cbb73754c21b27eb2cd849832e37dfda13e4c293c524b6c08e3942e0cf25b9782b7f48a9d59cc9ccce17deb9d3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x0c82d13cf3a2a85f888aba7d3024dec42cf940fb55047323315a6abe8d96309d9f2bdfbd7a4c9a5b89fa9f6fdc853f5d0deaa1760c184dfe66b68084478f585499d5b8eae6562ff5776efcb651e61b1147c76c55f5169fdac737bd92aecfbe7b1882a14935def144462758c3b088d1adba413dde26abfb9fcf2fab65fa3e262cc97001f88051f213388b80345df1ba1a072610d6d918562f0b5f7b1ff073e7a8426ef2d5722f526590e71735d21185cf58905ef6c5621d42bc676e5e3a239441) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x015edd2aebf511d69dc97bac7e4946443a2395a4a896e5d03df674bd7d0704e9ccf2c54b33e011850817f36a09938e590dda207d5be7105121e1ec23d8000af6a9bd122ce89e19521eee10b254f2128b34e98bec8fe0c72010b64b643b4d99b501b59d6c6c934a3d114fb9787fb2da8f830f1804ef239ae63a211648292923d388b26f57736dc8fce793326fffb440e601d922b33d830ac228b7ddd0481e3e89357556bf9da9cae0549dbb40e2b5e7dff76ee9de4c3a48dcd2a27cbe361d0b00) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x08b66387458bc668bcb6a8cbb22fb8776c980eb4f75856777a164503d78935a5754b144b6dd25942bfd30a16f90c796d0a725749727f727c26848434ee5ee0e55c68767184a843d738b02e52be0b720a53284d81fc25437a60651db6ee92604f0ecef2858749a6496c923b7c7e8e92d337077ea6a9834266857ab732d5f998a1cb0161fc8ffa8be17998996411864d28167cee2467f8d1d3da355f2ce67076e94bbdde4db911b99d40827283131d63f5887680b43865a4425621e47d025fe6f9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x0bcbcf739530433a8b0fa69fd40020339a2c1eb08a0d3712032cdfa2e599676d9b815636c3f731db06e48fb362d1104f015bbcaa8e137a18ac0f35083a8d2a0ab02c12fed6311189f2fa288180c3e9959360f76dda4c83cbc1e12e3b9d2df19801e8aee395a1dea81e942ef555469d1bc18bd3aeb94e6f9a2bf6a305dd2ce4612d3aaf69c8892a684544d7dc26c9f7e7073b312159e53e3bc2be81ab348e2e038822d4a6f380cfbb94bca8cd0099501f4ab5f3afe60a47f89afb6d230120a956) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x17a973ca78d77e4090408eecf5decb03e9672cca7aaab21b52597814ba3c557a97997efa71a2dfec15bc6767508189501903fac81ed8f8d31b7fcf6259939c9ec906889196f7c5a39ea8603fe3996fbebdce8c121dc7ea514d208c51d019ecd51066fe4e7311ad9d59b7b5b0a3c3a9a55c0576ab1e768df9a6cb888fdbaf6430f9a3c643c16157e17623a0da6e5f82720d487bd66d6e27cee42603408d29d4a6de0ab859bddcce105af9977083050cba11ce25341cb02062569228bdd78f733c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x059d9ffa51ad4cce6aa552c633f3e23ae56df32e55f28a0d1fb48587b230d6d52b5c46be3fc77d05bbb88d8a92a26a550d5544621ff4e3e83c716c4e9d81c28ec87329754b46fa62d7fe0c7f8b4d45db58028f7f86fa15661c503ea8ad946e8b095399a881d6e2bd9b1a941d6d3ee28249b1d035d544ff58aba4ef30f8161955ff2606666fcd35af8d5fa03ff92917520125e02c7ecfcc7f9ac1c2324e8b566bacd8a250e863c0494826c629f529fee87b2ef53726c9b7e02b9894c528d0d214) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x0567af503b136c79f62c3c426c51ca098f0f0ed75e5084cc59ec5e975fa5b2c347464d816d85f80f8a8589519381d25011a45beac93027f83ad76daedd06eb103226a36afa61783d5d96fa7e54bf5433788a87f41e51d61f791fc0fdd0d6389e143a7800cda14a046fc211f6dd73675eb56a887e026478d81cfcdf8dbae0fdcc34d0ed2e7d321da42d1ebf7d0024f0b409e1a753f7b9d67fcba28639b3f333b004c32e569cf8fe2b5a4c95804e6c45e5d3f1fdb1f25e476e7ac76868ebddf8a3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x18c9593b1c67b4cc38133e3061cd96d50dc073930df218abd91f1c4ba0d90028f2d92927cfbca7516b0df85fc9ba2b9714fa5f14b2942b9f39bc1366b81be9432ac33eaf04387b98f6e0fb8ad32de99d542510783f2d1e064a77e6f42af1c98416ebc9786dc213e6ebd40670dc2d904ff60a5bce43cb246bbc6733413228f0e540a510e2985b7aa3c0fc4f5e5347e72f11464839a8caf107af63e8216d38c3ddfeb1d16657c0eb876ed3ea3ff9333165cb48a26da3fd989695d789cc0855d07b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x0db4522335e284df12f38ef3a7e4598796247abc77f7b2e1e603e8bb6579d1e34c399374d3800aa032e71fd4463e0210002417766d430b498c89ee71fb8130657c412c0933e01aa4f1a7e80e2942effb42bb20d0c725ab2571e8b83a209fc07007c7de731caaee6522441d0b39285af51477474a87bf84fd5f65edb6dc641960e963e72e9cd4aff77e407591a086fbea158ab626b7a978b242ec2d872db7904704a400bdb76da784f5336ddf0ff06f401feb4eeaee5af6e4089447085119c513) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x112eb205ded147fb6311e3fc37e07103c0204de7fb9ac9599a9b42cec9c88a032fa10927591202f9bb96faef5a3e096919f859480a1c935dde21350f29c0c4a6aa99be84fbbaaa3a1b063e81634052e0c38237f34d0cb227b4aaa6256a350e6f0c18966b61c44ece02081a6d55608555d5ee655338c5e4165a02e2718fb26403515de65228ba00bdb784b3fe45186bb201fcdf242491736de4597a03b41c4a8035c680b45029e62088084ef938ca015e6bfa9dfffac2bcf8e077feab4c098d13) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x0d9954bf21fc9f7b23368690dc64f1e9123bc04f8840aef2e10bdc34a69868ce1868595664dfc9473ee489016419f2730cda11fc675b0c509b33b97f6ddc80fd07acabd7f730be7d64e1f4f113caf5c59259233d08ae1943158ef12e46491e0d193f910f15d0574b0a50831c4670c8a59665c02fb7b211befeba1e67a9cfbfaf8584821628c356771fc72f2a1e8c75621906c6b74057201a6214f135e406ff40069c3ff561efb6f2d18d0203fe8ecdb46cdb20afc6960fa34dbbea49c4c008da) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x0fb66ef421c6f80b62266297d6e9c65a6195229fc6ebab3cb3d27bec45fd4aaf30368cb5f4236d16e52711880941445a167f3a6b064ceadba41399f08276e67b54adba620b22081bad73f8b0f792e4521ac8b27c1af4648836c1e15702e9926a082360ba2ddbd29da654c41c091cacb79213cb4c1bdcc3533e2a9e8f5842cf2e86f8d7134035dcdd907a857f057e0ff014f112a508dc23b597e190b95b66b1ff51e20491dfac470b8507ce7fbf0c4c246fc7825e49b351319f6d972b7f0c6ffb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x0c2e1a40ab2a6d83f9f93455f16d13686c29b3f8b8901082930600465936e8cc3eb8e98d214738f8f01e0681572592d800335dc6701acc4d8065832b66782b1af548c39df4e2eb6b0621900f155b0bbe693a2cf4bf42042208bd6ee32b127eb61565fb0b7f257c93ebd5b3e5147be147f9441a3d650adf860192a09f1ef93fa3659b55138a0e89419c4d8ff8a9e3914d03e649eb3569eaaba156c8ebdcba385ebf74e457b18c1db7933285b0d70bd902b3b2a703ca5d8b907073836ae3f3802a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x0493817e28aa42a1ad3fec1032efc3555c24e0ac61cd6c0e3cade1d50723d83c6aaa0fa7448b79c1d92d2475cc37d95015d68c11ba7fa6869edd5342f4ee7de7df60004cfafffc8e3df465489b0479b6feebe86c559b43459f9974367f9ba802112a4d4de7daffe8f69741d2b57f06cdaf23ab81eb34ab70a5a71ef6b5a5f638c5b04fe02cd174a768f4bd9cd259ee1305b534f596c559a5b1223980e8f314c1857499b94df5b9faabe18d7665d1f1e981c47b1c4b16a3d6cb249910ac0b193e) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x0d7560e7bf910cd7c567efca055564120aa864e625ecea96fef527a3884176aac421fde3a1b0d8b99e4d0b77167fed43121653c79dc44d33c2a18d90f31cf5de78494bc99132a608d7f4f36470b2c4156feaa74b130dce1ce81ef352d167f7fc147c2918f2eebf339df2b09ed42e5a378c322c2eacc41db64a4c4c503b82a016a19c9a1420b1f8408fc6e9143081bcbd13e01059cf5755ace419ea052e288c2e89036782893b7a6e6babf720e269f65fc68529963502cd98f2d27c59419a7405) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x06e73f37c36181f4c7a3bb03020f928a86456be3a07aa159589ff7a7708f6c8baaf6759edbd7c112820a3b65e3af0a1c17990ff1ff16ebe8ba94018688e5cfd0fe45a599eb677da498dedc30f311c0f5b3f6bced41aeace904394fbb88cdb28202ff21172c79dce08cc135f614439ad58abb8b5a8c9fc9d9a577cccf0deb3a6582d4574513ec06d2c26daa75b8ab42b80bea79b78e9bf647315683a06681f87e2c181e272956e1e3b4af24de7667a018c0cc7f54d09833df13b9c7b55e859a2a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x18e3f183e245bd0e9f34b5f2fba7be0b00d472bc97c9a8fbbd31f0eb7336762caa0460466df22190b223ce5cad2953ff18c954ce23612f8ce76a8bb63a0a02cfdb73b051c6eb4687747ed58ecffdcbce1f25f400932168a40a09c99b8cc177d9047c3154f719e6b7174387fea6b8c5d3b0e57c1dc631b95d0195629c1dbe13ed561ace07e96f363b1311c2682d06cfa0020df2dec9dca112505a35318bdedcafdba9983fa89112a6093424d132038883e9487145d6748874fdb29f25549e649a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x023f7d9827bae1d216c3b5d53bf27895d873d326dfd52c8928f309a41a6b7118ed58986d2eb5823119ad11750e1578530174f8a442461f7cdf90bc7310f2098aec57ce96b8df596ef51044334cd7c6caac9ecfa07d54e0c4c32206d65e4ae14f0080401b835896d283524ec6c247f2752d340076c34c03ef1540fb18dff644320682b65e40f9673488123fb915ebe7ef0d308446fb822474a79ff5b8c60528f2f397a98043f4f552e3b7a8eccc1d5f06d83fda350d12773324d8157fa12d2872) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x0cf04cba242dc3d277316d573ab85865bff1003a6c9b2a14243ecbc70de0c8d42359d282a6c244cb32c8e2c9fa80c33a0d843f5af5f3197513f1104657b22cbdb037df46c59cf9866b3c92f89b02f80f43aef2e945b7fe51c4d20a746e23b10c0810b03243b4fce39e75155fb0be9dfe58c4fc9ae38c4842dcfb2adb108c28d23742d976febfa83db441bee72874341411344d26f4bf28ee81e8ce8440d6daed027d0f50a91475ab1896bb2abe00283c3fb5c3163b1e9f62dce0b3a2bfdceabe) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x0a7febe0b967b83cb0268100083eaabe0b795d8005c5d2b8420e1d7bf085c622beb84605052ceb840b70ee22c93e94dd0f1b1ef24d4c5d7a0fff4a85143ed3d25e720584984f63394247924a7c6f16b86e625f4c474024bda3a9477b42a8f07508cdd689342ead177dde1846863ab39fb05b2c39f003e2019d8905563ae8bc352fe1fd5dd9aa17d45a430ac8d2c455bc06bd5571d25153ac5728ebace1f558c0e0b6898e38e28e5855cb5615c4938f4f90e89c4c24780e4b725c633d41dec341) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x02588c524ece6aa9f6b39beb34dec76ac2e413a1c8278fd195ce8004522fae2c03f5d39db93d2e0518810b89d84824f402d8bef8c8c95ab3a1f12b146bb6f79bc1710716a3fe07f00be9c999bea287725c9f7304d7dc8d8113cab9ebbf65de9904d0faf527c399199fdf82288d0bad821df257abeb0af87e4a7a6d1152cdc130d9494a254e102695f69cf6a7e67d5b4c130e25fc5f1cea9fa2af715f28369331c8631e3b45ef5ba0c176140895fe3d4952ca830b024ba639af123e0663286aa6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x05f4e6e78054d5f57c0f966ae722143cd942ddd0701d1d250469001dfa00a7665f892cdb10ec01d73edd2fdb6b4b7e5904d839d8f2304f07af2aa949e2f6990e755c158a131a0021db8e9087b64c8fb299dbb88cbebc6df040f0855c6ea3c12c16e4126aba531a2716af104043884b45ae86643885a4352f846c00bebe06d95a864aecaadf90796a9fef2e94493556be0c62d8c4ae8a6da5831748c1f49d5652fff319ee3001a7043af456729cc75a0ce6cd1a8cb7b8faaf83bf16e220545b6d) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x06ede848560e5bb7548e1242039d23d2d295aae1bba28d81f1f575d659ddd845ead27be44da48500713866ce32bac98b190749654b979702c1eec434c0392c7906b729caf5a1de202c54ee3ba60d18cd47b0cfec9c1f6d7628553eff579b1e9c152d908065af0c2928aaa674a75e9d971fd05568b0dfab0997acc07e8d1671703b8f32d39f1b2d0d667267a11757e4480d989185c92e9e8059712501ed093f83d420f1b42e569d204add6bf80771de9d05d35d90e2a09991f185c37fed32a2d6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x08d2db820c7c621ab36801b50fa305664db97aa112fc3cb2e42ee763bf87a1e42351a4a33d8e193985f698517a03201d0233e3ab5f5a88b0ae54be152198c00aa8bb7dfd3c44ec1adeb854fbc8c127d7e82c45f923d3702c8c56d186861751bf011506a10f05647f4831a681f817781756f9c202573cbbf3793842fdff6b930a47bab336d68d5d92e7a9faeacf19388819a88ed556537dc025314de00503412eac8e2b3502db8310e1c853abdc13b5760a31c5df677fca11b8d894ee46737fae) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x0b418425a494a194b1e61a5e9c7f33ccd57fc0ade63a7ec39f6844b81a5bcc66ad0fdd5c5fafa9ec7b6e4f618100aa8901ff959e922a1917bde9c60f2b72d3dea0a953d06887031f7bb1962b30aad9dd7d2b7e368a96e09de7ef3ed072887f9316588eedcc134b01318669e3ba159456b66392a022244a424272b02358332d259f0c7401ad9b94a6ba6d75cbffe3cdb8040c35d5a9563fb48f1428fff211db8195da051cb85c693969ea681f7ef25084ddef35ab31d9af60079a8954923de8a0) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x01fb5b8374be433f9e1908c01a934c5d90f92e1f64f9826470450506dc83e07c8dcf56eae6e971bc2add7bab61fa376404f83291b88f355c33b77714bf4bb8e55972a86eb17610a40e9418a18cdc9427b33149670c80a1a3166b7ff97b60308c171744774facd14df4bc23aa5906744ab2fe93d54f921a0d726138cdd52acd3b920528ed3e512d1c6b602ec1b4abb143036c525e701d18ba9bae07862ef6c4e533cd5b48c09f57872c57ef5efd8e719e06984081c399fd6d91fa6f9f71e173ba) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x10fecc2b0b824a4e3cb949d0f604afa9565b1d993f606f0746e5debdf919cee12d2b6ec90f5a0777329d7be4b1811dfa0eb420652f106b375d19c616b29d83b240d95d571012970e4fe18a2fd103f4815a729ac5116f828125dea40871aca06a1352ca00fbe052193f5c87693b19c619541482f9fe4b96a5b87aa27d2e3c90b3daeadf706c4e03774bf15d75d1499b1401b9f225b3b2cd4c662f22fbc16101942259b0d60a584c1fff4214fdbad21266dbd1161d107c2db3882ea1e76db6bd8b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x1936c0b7c3d79501db11eae0e61003cf177cb88e6d227c4da44865fcdb91e61a3b08f3c8404c043e83bfcbb8502d7ca3073c348cdd192bcb578af92a18cb0fcd39fb4e42183d6d80469c8883c72d537960e405f39c739525cb223318c2f008230d62439b566ca428ae44e5c1b6a589cfe6b29a60fec77c63fe7559da0f076a9d832ab2b406ce333bfa1063b80e20be131836a637bc8a0e967dd3c8c57c7a3071676aea8b4b8d7dfefd755abf4f5c1188e87651535542802cc0bccf9c71db0be1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x051f4837d54a539bfd64b8f0aec82274813524579e0b61f8fc0bd65748796b6c374c9af207cb4916e77568937068a25a0a94831a3cb564b1e67c10842e3067f78d6895734d5c751cbf35ac2a54d590e655631c27779f9147acfefac0efdb45a11365ca69c824d8a4f583b72a8e82bbc61ec60e80b43eb9f31390f0b48a3d043b2fd87aaf803f037157d256146fc83d6501a7dcb3af681bdac8f39822d9a964dc603fcccc13357c6227a15f4e613eeb6826f021a06081270009e2633e3e814214) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x05e30ddd7d912be3fd43e86532d79aeb60c1a65ff69813195467403d0eee1f10d28e72962aa0da418c5473b11911616e059a71d47ff899d4301cabc9ea9a224fe014de235eb97004cad32ad3d96c96139c7694a34b7f058e4133916fb9074c0917ddcc61be042f8f8a488ac387708fbf17291cd032691def4af2ad59c454665cc4f30cd6dc1ebcdc3a644d51db8b456b0d7562d6eaf317472014711160ebf4c60186d1d5155f0338707035833aa77d2e63343df7ea054b52c2a47d23cde92c63) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x09796cb4112c32f3d673a13ba02ebda297c6c44b8b82cc731702788c64fcf552823d86380a0d87b03bcef9c3c374333309871fa678f0980eb27d2d8feecf92979d4248bcf5a3c52e43ac103f97c11572e37c32f89d497b3fbc737b8bbda81fa915a31a4b7a63e27df9d7ac93bd60b320f72c166170751f9c3581bbe37f4a7e87123e79d4744582a4124d569c3207a178148cbff1b45ebd7c72d9b66a713395c82873fd93be5836eae70f9c28c97c947ff5411c66d59102efd4b609ab6adfe148) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x0ef55120c52f8ff2fab3e0d8df060455e6bc568df494ecbbd0b3d42d9efc49ebc5819f9ea3f41c5d308d118af3850a9d03d7daf556a20e50204d80319dc73e78e03555a16a5d0ed40e4b324863226d72bcc3dd6313e846a40c101a7183e20031158b37855a1d9747b887739fe8b7789419db5a6e7451be477a584a958c42834c8f8cbf19fe0026a91dd0f3893ee44dc00f6f91258dc436c45da4b3e4516a83f563bc47aa8b2f5038f1fd1222fe6828886a1e93b0dc7b782bc631528d30439ac3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x164697d6f33b01d17a0346a14ce7ce19a9da7a9b50fcfda5d54506b5c8db71816025bbae72b2dc79206c0dbc212fd704015d7083f71040e8d96fc12891a1d25abfa31888b6a979293c6981b85ede61569e08a6106fa4dede8fd0d65e6ac1df5908cff6f38cd6f08391be6eebfd4d9d930d8186a5a74a7873e38e74a5afc1af0392711ef285017d01d82b7eb7d2ca08d30b7d1e5acb97dac61708a1e39eda8c3dff83ace70592c7fe4fdeb0615598a73f5f3f6f80b65674441aa1f3218bae3df1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x0f54bb273a6030da4bae7bbf62cba2232c4255610165e5598ba5411188edb6f20d99ee58e7a7af4d696cb304a07ebf2912c5133de2e27b0bdd1da07fccc0f9929dade6c7e37f39b3093c3e9cf5365f62b58d27b767c3ea8d64881c1f6de14b6b19a8433728071989d64002403928ea4126a9ac05e3928c5ca30dbec55bce1ef27e88e4fd321734588f7c31c447f81da21465cccdf04ae8e310780cf5225407de50c94a1a8eb65c475df88dcd5842efbaab2193de3f146eb78c06b9d2a38b2225) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x04d9a9124549958c1a11b2db4fe76b9b79f9328c316dddb2c09c2abd1415545b7397d65fe483d98fe4fb232a868ba67f010450d80cdac1738088013b5f00f0db1823caf600cb1577742e63a87bded90d4223dea6846ef35faf3c59e79b376a9b10f2cf9cd5ac868a172747bd67c9477f39ebf93c5dc150e51f4821de8839ee2f730910d6f8449d9de48714601607194819d26c8aa7499c58bf4e97ccbd28ab1f24ca0b43f091fef8e5eb04d6a12accedbc0da34cdadc495512a5a409172a40b7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x067fb21e2f1192ec16981ffd2f295a748295f255c572326f4fd3eab787d3ee33d229debd5e4450df3b90f972682eb9200a72287bd63c85a9a339acefa4ccfcbe80dd03575e9932b2a154635f31cedbe41a3c4c5365c5cfbaba1de4e22109701f06be87d222833d8038cfc9a11fa5e60bf83d9e9a7e2dadb4031ab2381119d4dde67020affbaa9c776696fb90d0a38a8119e58bb1a850334a2099a45f38039380918ba4c939b1373799cbaecc1604760e810d44a23da90eeb5b951a727da8d581) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x0ae2f725fef75b8f47a111dc998d4cf1176392d6ebd436fc090b564c867697ee592b20813ae421c15f79ea87574fcd2b19bdc85d98f0e9fd10de46907a12d97c3211df3a1ac8df43eb2fcea3d97ed8d704321b253dc7b8efd8fba71d468fea04053cc11354cb81bbfbfebdc2950e043e59bc0f391eb5552a6da2036cd02fc6d4adb7391eb5fc1f7abb621dce078036cb158c1e0d39e8598fd10c0f83d83070ceaff1afacc159f009253dce5076a601fc355c085f47461fa7486de2230245920a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x10f9b44ecd58d1f17624fa7681bf756fcb339346d3d412f03566ae196fdea24da42a257d4e345eef7601fb1b17e005550853a22b71d9d36707054970d5b1bdd6f5055e846fa5a4f124250f5a259e6aa4000d9c063d99e691c9c17709942cd22f0bfb15e32ec77bd2cc13875b34d8c44cebdc8734fd580c607cceb701030277705b1b9fd46e8b44dabef2d315c70119920efd6d775233e13dfab608788111cc3dbb1b2f6f92bbdfd5a482cd2bd865184153eea824351e79bbea60bdc964ee77ee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x16a05820a0a16664cfcc71cb648705640a056c9d9cc6c5993aff22f6b61c7508db19fbf0e544b9019293ff7ad93e59b002d91e6566ec18a8e3bfd8e3725fe7a027b055273b86f1f1ab5c02855825e24d08964ff0b16a24ccca158f5616eb762510d798c4e710e264a85f9ef00e18b0184382e07608fd2a213f829ddeb9b286c1d12cd547c5985ebdbd6aa490553a72df06eb478d6332ab4bd4d64c325824761b811c0ed8122b6e36f23f06ad1fac720e7f1e7b772e567c7c0a283969c5557807) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x13b51f50b39a82cc6ea6062033dfd349c523f80ecc88cdf69a80f5888f94b9890ee06bc735cba06cee58c5bb231b17e816309ef2d3e7825b96a2070521960fab9ae5caee8d35850d47d3e6a7a68112796292cee40bfdec31705e21ef45375261081030da70ad7c5f27909abc920150f17d14f46710e40bc0b761e7110f4ef6dd08faf8f70395fb6b659bb797f241cc2912a68dcd90bf184e54db5c48808dfa2cc9bb16569500abf7520936ba3d7192240e050651201cde83f51c10eaa66f5156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x1939a758be0a4569e65da1c38df793a425ba148ec01fee063d8aef304cb0cecd4612034256e38bd365929604d27656f306384a1fdf4742e1f3ee39b2b6145e74d346e8b94eb6d1d55cc3293438ce7b4425f4b838f4de91dd352cef03b11100b406cb1ae2b40eaa79cfc619f6f0cd55d97550e4f6fb777063a92abfb46d9ffe9821c08ab9c798e0800e305354f3c6ee49067dd176aa3b4a561b8fe980ad7b660a41a5563ceb1de278aecfa963237c5a050fa588d155924fc1ced9c7a5528ee120) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x0603ab5573e02f442c3a466382998a95d95c4592b3cbe34eef323e588ab1d46b1d98b089e0646561bb6ab834d2ad2d780912ecc7bd31abc0a5f2fb5e6c56ece8a3149a8986d347d31968f9180b73b1fa6e8f05aa2adb4008d594f3fb06f1f4290933ad5563d42a45d156aa64819a59c34ac4432fd51bb104f6a32fe421edfa064acef05dd5f2bc91bc37f5ec0ec832ce15f13c5a9c3d281c0ee314f8ba6a80dfbdd009c2081decb62d06397a4355c740e3841a5d50e776c56de8390b2dbc4875) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x18870e8f4464f3bb7e79222f6eadc0c7e3e08ded07da9648f0759b74a4b09a18684f88469a88b1ec73ecd7175260dc630dfb9efafe23dfb8b26904a00a9407a7966ea4fa25615c31eaf9044d671369a8aec5c3efda6c4c1c4b80a7b8f6e65ebe1258d12a7b8e7e64271420f667231dd7b5724945ba1527e56319645135e3b33ec14fd90b53cafec63bdffda506e8f10404c3a7918ae658e54b5a78c7c076bbfc0ba4d0ef955bb09c0023172e870ba7fb94c44102ba8b3001c5431046f6b9e761) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x03d06662af3934ccdff4d28fac7281bc9ed149ea2e4ce9a2c7727a6cb84f31fd61ccaa2059be8fd41ff6c8425f5d7e510534d3851a56e72f97ebfacb9ccddcf4d4571d14ae4ac7aaf046ccd4ee903fb06681a8aba0d02fd5a1be5b45e40f84b117187fd5a26936ebdef1e288ebd03d9edb787cf2ed06538bb24f895b8007e6442b3b6f3f878d09ba6790e403b6c34c5b071c00b7237693870fb40823a08642de2db8ceaced2dc832c77f3754711fa39df03f1f57624e9a0570039de6f9bf89a9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x0f59ef1c5fd12c2e50a78f9dcd4ce371b890f356f3c66d2ef70bbef53d713dff17a9738cb09e8574f6e812cf1fc8459c08cd159f8e3385e32aeac4a7227d5c0b8a87469aa70bf9fe9c1064efec96ec6dbf9c2af429f0a48d66495688d244049b07ca45abecd4f97135fa8dd25e40cadd501f8753502f48cf3d102016c43e361e84ff2aeff5e40e289788d2f944d783ef058d9c8ec4d7e7b941e261b5f9e342b5006bd8c3cc50e8cf37280199463b06776d42303c1bfbe823e807ee74344f3803) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x124353c0c0e37e598ab5c76344ba2c82c40e24862eb4490b8d3ffe54b9c228db0a22b5a8a3d3ede1b2de18c436bbfe4c0b7ec4e4973d2e742e387484458916d35ab73f17e927f81b0bdae2b0b3b467c5081db4e9ea3f3d65c2c017f32db916b30f1e29e5074396a921ccdf5d2cfe54351169613d481aba30d0d903410b87f6b50403835cfaee9d2ef5c2cb237d11d5ee0b8f64e1cef69c652094de46cec9705dc9ca501c7c9c7af060303753de58fa97ad12e03f850fe9d65b0852acc5b58f26) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x1213d72767b0fa5c926a3b058ca3a9aa10fdc2b0d0b97adf91f660c13dfed4f7e57fb467ac0c9f189da2ad5ed8c04ebd0e92b1e90a842e6ca42cc66c26196084b833214a4b1fcbafb01837ad086790fbc757c537163be73772454a7d0feb28370581169867006417ef509317891b36f2e332953d3f637f6835b58e4cd3b5a1cc6091a1e17792d23d41cb206de73c1ba0108e8ed23b2b15cadf3bc89188569872d702b3a1c2f06684e294d77ebcd8409f736932c59c075ff97c926530afc09728) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x1326f98dbadf4dbaa18df0fd87271b7a34c8eadbdac18f92cf712066295078b4d12b48de1346a8c0f0fc2431f82c91460ea4d3ee221040d0b669be9f5b6e4a2e719b899770c2f17a345b746377d003953db1b5f9cee71d6e4af17b71dc0151f20f4d08e2fd406003967ddfb1a5d6c8d013896875df0cefd6d3395496d2ad5ef6694b2feae8952fa1ef1b52876133b57813da5a30be043006fe9333c14279abbbcffbc47fb46c67ed7c1264a39e53841e2d2c126f207dd055f373abcc2923e916) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x05c11a8356a82f725a9f484eb5376ef831351e4815ee9696bdecb4d0a31bdf671108321796129b3dd7e62692ddbf3a980143b29d8e132df1cb431e16b4307ba061c6db86d018a44f55568f686915b48c37606fc28ff29a68cc2e72b2fc56a196188aa6125a92876142aaeac49a4ea0b65ae6e53b1837f87134ee243055a420097eca13ada16878727ea0a3804a1638a00a41d0255bba9c8aac9296e01a181f9c0572a1b2e89349988b65f0c3548e2fa279c1d7a3a3a5d89b8c9c3787e0bc919a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x0cc59adfdf284b46ceef9e94fd82808ed58fb5b269ad57eb1f53b9faa586107ff1020d8dac3f3ccae3ca4a3f6f0e37f8195f2e52ee9347a5c2edaf78672fbebeabe0944f61908a4454a5ab7fe7a4a49291fce6dc8ba85570ba6ed43e41f3efc716267d38cb286e90dfe0177f4a757439ea52dc2f4e33b9d02d1578fc46c394bd8bd5c8d90b8743b085d0830d4ea51a8a125379289caf50e1373e331cc43643025c9c06f682e8bf2e2cd44f6ceb04f629f23fa2d5d12b04ed3ade91fb51adf9ea) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x146425b42bcb86ca1a9338b7f97911e2c29f558c7511e33a2940066fd97fd0ca98651bf28629af87c7223abf60bbe5e000f26c6480ecb410e87dd5117fcf874f044501d391ad264761dad919a66181ee47ad22c53de6343a2287add11fde2a960f05e7349a086d1df1fce0e711ee1fd825dfc26323b23d0f9d67bd5a31eafe29e8380793fa443f9ac86735e005dea9230ebe2471063b42e5468390f089670b7590c67e0fdc16854d6a8b84062676da2d2022c6232faf46755afacb84ecfd1358) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x08782d43237f97a5cf4b4df3849c5edaddc2116f998652cd1a0deeae26314bc7bc4e931b2658ff59437f6c23a630a70a1541e4c91e3f5c5cb5b75998c974f949033cea3da6ac0125300dede47b58eca3f72b103fcdc4b2c0b54773821ffd9cc10fa1d239fc77ba97c27d76fa05e70af53ebd44562697c5e7891ae502ebe8c801c0d8737a069b9a91762283361cab97d617d72a20886f0d7da28d33c4f3bbedb36b09f17554e9f45dfc25e9348ee841bf971be9d33a75af69ffcef3bebbde5480) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x18f273b9c39e27c942cd80c28d9ad000919c8d1e89a151ffccb0cd431eb246fd622fc1bbfdba7d4217cb988a408b2d3c14a9cd4d9a2991c8a7b4e4aaa7a85816ecb70caacc8c557777257aed3a207eac5beeac7e527c2c7a41e367a08a08d3f40654faabbeb87873fad510360e7af9dd0bf0a8644423966703f97f227a4a8db78e1a0ecb26e73cd2193c85837447fe030bb98c5d130636f451d4f88b73c6ebc07b3a6555f99f9ffcc31d4950d87716333153ae80a3ae8809e45a63d3fbc6f51a) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x144df1ee0d7578b9cc430784734fc61d537a691297d24791c55fd7f84a120de74992f28ea2d946f6bcf749bea383dde7092e9aee4033520ccc5cfdd1ea129d0d37d659c56e161c11d6b7186cade1f4c9da8890481bd7453aa291f96a395f72360de71a74c732f740daca5646ffc15cfbfa326a98183bcb39ca01ae1ab5eae7ba93786ea1668d85538f29ba018b1b272a0525940f76acffa8389d2fd16bf2782092193812f934084a151815da57b3f0728c04dde3b9ed4177d3f0ddf185eef422) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x1093a56c60d4e4272585ebe02b04111b3bcff524ca0ca47e87831109b63348de87b7b069cb75a269d888a4d0e74836c412b6042e961380470bd3c8f383dfb6326570ac12aa4779744b4d4232b4d559ba693c16ff79f44988b896a01709d373321353ebf4c9a0878cc8f19c7802bb63e617a905baede501780e5fbd7594b79bf04641ee85daa1b28971fd00be1bbe6de405a7718928c4aa21e76739c9831e9db84381b9337dda9bf63328171ca07710d93ed1b004f67f131d4eb2868b1a727aab) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x0419393d95c6e4facc4467b752de6cd554e2d2fb8af5005c4541d11d43ea41417484c39e40adfe4bd91763d77209e15916b9a914aa7dded7d5ca1eedc3c1c9210fdd75bcc68ab3c9a6fa2867e1560d26c90b025540adc2a7447f3d5b1b2c5677117e3d9eafb97c4bc8cea1e2950349db4d7b5e981054a55065a5cab48aff4e8c4ea4781cdf19c5625f4982bf76ffac1c018a891fbac1686e9c5be0a5ea8db50ce77fca81616f0a80e0ec2e21d9630d32c0d1e1e30d73e1838cbadc63f6123b61) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x056fa4dc97c55b5b48ec94eccdf82117f95f529130ae4fa66dc30360639db6c1a51a44ff24b8fccb3554521c2cbde8e50d2f31cf281e3ca0ec5bb392896881f7c0de3f4be17f38ab256e12be071682e114e4dd58f4f6dcfe28c91dc98fd6a2a9033c52d47c41780f056cd75cd26b8367e7d573ef896ba9fd22a01b4ecc4f2c666b89565766fb9ef1a69f52eaceb603e806f2310cfb040faa7b9cad64fb834a859287271bcd4eaf85056061c7a0fc0a347b4545967345c2b678130d1f00ba5446) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x07f5c7378ba427b8030cc07b74a7ac6be3f26bb7427d4de4199b390d611338cb53ead89f3d64a6d2fa82f361ed5d6a1c0136fff6b37faf56f46ee1ed69bd8292e92330fb65146221ee33d86b4471cca4a249fd66f7c3a6be6c9639380e767a57016bfaaa68ea57833c77c10997dcb6ea564d4d6994e43dc92f62e0e74f7493324d4ebeafd3e3574fee754fabc3fedc6e1767af50ddb2c80622f49931c320c34b5cccbdfbaac25f144added43d4e6a13ba9fab3a648c31d54fb70379bbc676f03) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x0db47b23ea8655d8bdea4a964d287dea93e2051d6b0898b8f227ccd5caddc06927a3417063b47ece53eec7a71aeea36308f478ad03a0e1a46e552cd5bcbb78c1ad774f8a1a21196ea186099c7c65c141b4400e3543630e5ff4951c2d634e43770ffff842b9065591f61bf71accceaea967060e3c8c4c3a6f3f5cceb6d9d43decc45081e6c73b25433ee07a1dd554de7e03b526741059c6037b20ab02d2183c2a63948a2d24b6745f8b99709eb440f70e839a6af23f1fb05c0434a25dfeec8518) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x096faaa2a2e6f86339533be33fb37dcfa202a757497dd6a2ead0d27a8943e909f2a8b1748cfef0ecb80ca7dffeecdd87198390e65d8f6cd3a77d006992ca2d2f8af52b5cca18acb0bf1b9631dc544c3572c9746f5e9d422dc73d2aabc9cce5df18ea4bdce226d443ce4252d77d42c5e5d95b80aa7630a3d5561b9df1b55732dd418a362e3042d80c83754817491437ed01443e49536534683d0f91a832ff6fb4b6fa3172f4ed6510bb1f5033d8fb287c7c9ae1f95ebf0e9121ccfe1f6d869249) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x1018f045f9c0bf23270c53e93e57d86534a92a07450d6ec23d7ddd0948f1bf28dc5712bb537afe14975348c0c139ee8f12931f846fa0fa8b90e43311dfe117e83f599e54bc48f8ff287ae41071d668a898a542779d2a5fcb4845d1ae97ee28290eec5e9f8228dc200d563969d9ecf5e67eda35cf2ad8399b23aacca233bb0a5f556164c3b79751a3f175f7f922b90b5e052d1b8786e0d4109ae7b8b55589cabf3bf4e63962ae3eb6a8ee96a0a202cdd49dcea4700142398c410bfd5ef1370a94) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x10773264c20e034bb3b1940aaf16c09b9514e9ab386a75bf242414aeca5d00837d926ddad1bf73d6e8e3868c65c2360d081d920c6986f04340e6d288b5d6cd0e293d808c797e50a138ea8f2eafcb62660dfc376ca37bd83383e613ef02947cb200cf62f889f8eadc8a75f2bbcbd5948af4def506b2a91af37710fabe09136ad998e72891b57316b2501d707b6e77d2dc10610a3f1b5c9d3551b234a22270225d579bff41a6bac7fd8d88f5a0b0bf5320b2435774adf05a59c98a4e02e25cc0f6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x0802ce52aa3827ca0c448659c5e752946d4559cbfe831a1a3fe1961e46c4d82fe7e7dce894eab491828b8204361ba67c188844521c610d755db8fdfa3a8d984e715e688a8de91b431b7a39e55527770ae6bfdd9dcd4d823870edb7b507fb8ba70337543622fa6d36faa7af085fcb810a9d6269fe5ea41e197ec3724662d436d0a5197eb21277160bc895dc0befe26336196f2d23ae192448908aa4afce25f76b24e3e482c57201651c6cde3ed02f04b7a51918a49ccd8e10dae597c64b6fe9eb) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x028ed975c6b20cdfe6407975052717080c11fb0139dfbda12c82c61225e07958f388a8977b7564487a3d09c54da95df203601bb8c797a8b17214b9b96250341adea5f0a70896302e4379a7819bc54722cd055e9ab4fbc74e833b2ed38e2a856211acf6aed8a4aefa31566ef473bed06c6c849c0efe391d335924cb41bc7da47f62c9d2a3df7d634ba6e10ea29fbd43c305a0acaccca51804a8ef4e24b4754322e13126345b83dde0fcbf5396bd746b21f8c223239441c21359e1e5c22aa203f4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x064a98dcc354faeddefd85c4875dd501248d76272170417169ed41ccaf87824316dd799a32bf72fa93c757aaa2de82de0bc452e4bf80f9d9019f47c74854c3a5c091c5ee1d36a09df9e532af952acf209251bf751aa2c901de2e767d146968f51196a5ee76b5fb38f9af32d3cf76026a1164ea220c66d70cb389785741dddcb8e47057989f7006175a759f4ff48afae001ec48cfbb0ba4f28fd1d98c623da183206479c49660a84b2effb8052889e0e671e1abbfe5595e43fa0812734aa4f0dd) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0100000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x0000000000000000000000000000000000000000000000000000000000000000' -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x41ee112fba7c41314eb14660a396fee42bf2b5c0598bd3bcd42db2ff5b2ce027' -storage - (Some 0x06ef487290cf9a63c50b288f0d61a6df4b2285b575bc9f3ad69a0ab5ebcebd53a61fa08ca56e13ae9c737ca68571131c08d0a7218c15f0e0fe13522bd3c778825c94a4b5bb0f166d0a6ff98cfaaa26d8daa223f84b1f695df1409e60521625010af8d68419109eee57c2c2c90a832773be1a39ce99adfb59a7b4105d3ed36bd75c27f28f3c07a124092a550d5f5298470e3e8cc369b2d9e172f972122dd20587a20dbe37d00638b4f506f6b4f9e96c93ef4e2ecba8cb1fc7cd7760d950ea137b) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0xc442754d43fe94b94bc69cf090bcc64af22448dab9991e65123baf57f996dd73' -storage - (Some 0x0baba172361551b9b0efab885364e474ed868daa2bf79b2fefb2028fcca9081873dca5d7b20c638ea4d6b69553da5a7c0b175a2976fa0e2c4a7c7b9a795825b8c0fde5b3b6a01f189b9b9abfee5f925639c0d29c5c803df7a973b0bf0bf7edcf0854bbff06330652371c1076edf15ca6747db911d2aa0d624ba62eef7e158e8f72f7713207e772b84468ea05ed86738602288d131a5cd18b6d41a9e696bef6f31a196b241fad173b6ab21052da67b8a8c13f34b6083c8da2712dd578ff8179d8) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x8ba730fd4757e7b5a7a0b00a98c91539ce3878b0d6ea5628c5a675e233a95365' -storage - (Some 0x02ead5ffe35e4e026510bfa8ac4dd8c93203d4ca70eef6212861438c1c6cd2f9ac3fb80ad4d0dbeb62464429756098e10dee895535374bf9a3c286b740965a863cb75eeff96478e6fcbfc48e57309dfe2361869a3318d46f19dc82a05c48f3f80b05c98a156dd65796188c57fb389df353df45802a1970ea6521ba9d62792225bc109af013d57d93e875aac7c1ba8cd4126070d747e9f31a5775ced91a3baa2584ae466b8a9857e815118d18b416ee30a88ce70f314ae5ce644e85b08387e128) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x198da3ef817efc195ec0f8df2a6b9a23a849518d3358c39103be11650785ad5f' -storage - (Some 0x0076ec60c712a69a6b958f93ef7ca83c541367ab9bb7de3b06d70bf92b41abc866d50fcda0d488e05a6a8d8b2e7b2b790eb88abed2e1b3ee471267e039b658cc683da60f8c469330bcf99d23baacbc686778bbf384883ebdc30fd44504e9ef450dddccdb902fc57101ddb0ffa091fb619959ffb7742f91046a945d666e49e8963d47368443bdcc48d9c59e64d31c11c200a9f4caf68f46d7cc374dd9c4f4a5420021c61d9ca22bb5ab8d4570955466f0c685fbad338a8ac1f01114809f49a646) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0xe3b17a70a9422fe8a965618716f8e31903ea5744d8cd015eadbaa32b248cbd0d' -storage - (Some 0x162a4b7ddde8ef9894d765205541f2e60c9e316b18e1e48a64725f98e4844175183d4d5e06192a5127b8d780083daa8b0338056e76a497df055f943e68c45fa8a829cbe8289d731ed568081f671a260ebd624e44b7816f113c0c89aae5347751079c37d7eb00db6938449e00c74fe5ceb611197be4dd904bbbca4fe171007da62f9c925103d1d3f554434b289cdaa4f016ca00ccce538e727435017a72bc738e450bb6e14c9cc5a9e2e501a56b8419d1367a8d122a10fc0823c7dd9c5a517dee) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x60b29b8986a5b7708ef2438a385221bd5f99ec81ecabcc8d731ba2d3d1dff50d' -storage - (Some 0x02d1cbf6a5b7eb538f431ab1cca143b1ca02e33d90107f8e82871fb1f33f7310d6ace083fd7faa2a2c1857a4e72638ff175c8422c820d94e2956d27ee2f791eff19e705f0a62b17fc74ab6794a0dddea4d72faba9b8230c4f9dbaf1c44534876111d65a360e6d0c1937b600b7f37b5b5b4d326c08119a4ce905d9c9103a8260fd766294d7cb25f90b5d152b9e9418b9f0bce7a5a0111ff7c4ebea5e4f87b6a149e6357386f2461f70688514cb97b1013a0a0ff610c25dcddb81f1e48e8849f27) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0xe46e41c55be0e958ecfd46b3f69bb8b4803dd982894ad6b03d96806538284651' -storage - (Some 0x062e01652129da7f81d1ebf0f0530e2f9f7470d2ee453eac6abcaa84bedf8b2e98f4c8ea2b61032813cf7adc0796274604ab49a10604f75265c448dfba91b9b630bd96f490a0cb6cf68bdb2ffb6253c765c663840322e4ca3db73140251d93c5085c2bf6c8922ef5cf2fa85c531b59ddbfbb1197e081b4110d36d05655f5a10d818e29462221fcaa5d363c074a55be3400eb5b4334683f4186baa2aca2a676b6fbd627ad2b621364d2095b4e4d076fe06eaeebbe410e6146b800d4c3841dd2fc) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x3959963124bd47d8c84fb6beee98ed90066e7835ebd463c41323595fba944f5b' -storage - (Some 0x098a164689e471ce28502495326966b31e7db931bf8a613adf50888c1f60f6a1aa364ad27683cbc4caa9f4f3bad4431004473e376f1b7bf72354469f61dd9ed207a947676751db08af95b7e0c7ffbb58e89000927a85844bc0bb794b6fbb707e1168a86af2bdea39c3cbb9a4c10b129ac760989872a80122c1420c94210a6eff0e78250831e0df6787a2330c2ef4fce9135f3492f88dd277667d785feeacaab2385cf17d610b8368a5894928f5f685ecf4472107a1d60be8c1d0b54840ca37b3) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0x6c240a669e04c8ded73529373c01f741bf092fcc89ee795afde840a59b251c3d' -storage - (Some 0x04f20cc77326e57857147e59fefc56b44d83df17b7f875ab2e494783e5dc09620ec797196f88f3aeaea101d13c40721d0b69df47c3c997cdb0247cb6109b6dc75574c7f9b4fa34ac0009e2d0205c5e3fa2c409f8370a5d599fd92130a21c439b0cf49bf2ea294aa880a828eb335968ac27838a247b6f1b6c3b313e1fafe9460e56d513085c618fecc2ff1483567f9c5a07afbe632eadb9f19107abcd878b38812cee34b5f393cb1abcbae0e8fdb5d86f1053e36770600414b798a492a31ddc90) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/mul_bls12_381_g2.tz on storage None and input 'Pair 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 0xa0d55de572481bf7cdda17431faa763cf9bfbcbd76812667205017322be00c6e' -storage - (Some 0x14637664950ab9cf00089ca37749e38a61693d4cc526e0e45bbcef9db98454cc2bd1a87a93ee9f6e568388c49633a0e4116cec15613587b591007b3ef090e2af37072443c1d66cddc0f5cc1e45ffd093343a8cd09268d63f3fa0cfb07aac01da01ef73db6bef32a8c40dfa62f5bac884b271a71bd78566068c334a5ee087dc07d8f6d67d73f43f57bc2314bc8d927e47168d99dfa82a9812bd9b5a9bcd3e7c3fdc885865d2780fd08c93fcec32e3c0703e39ddd3f3b334fa552288efa9febcad) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- negate.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- negate.out deleted file mode 100644 index 292f661d45ee..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- negate.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 -storage - (Some 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 -storage - (Some 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf3501687299151d018be22afc17ed11479aa6ef4c205379eb54f4bbd1e919a2a382c4843df694df7ef1910ac533cbb3e8ecb33e2eec16ab38ba0c80592e9b2f105c432736e54662e8e1f25ad65b7b0229800955022b8e5cec4c56a6be4fb995dc42de629955) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 -storage - (Some 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10b7719be4db7d6a7de406512066a2309df6ca1966315010e1cf28e81e13742df54577c6beb64e3f5ac12f3c897ab75d5149fa8d126e4fad68e275a7a36b21b650a9ccbcad5b0d8fe3fb5e91a83277294a8f24ab050c8c610a621e1e090cad784) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca -storage - (Some 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb818e1801cd57eaeb542c3a49b2b4e2c95ddc71cb806127e84f640980049b2662d04df1e82b2f2d7e59a9ed0e927ea015c104e3d756d7c2760f144b705d2cdd4bdfc4b1db5db1c8e4293a8b00b6e7a010f4088fc6196286cb9f3b63977c0cbe8e1) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 -storage - (Some 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd1362b34a1681a222674a06dccb99823a884404edf7668691f445437bc9fe1468096e12d37bfe869e4642c2d4d831f1fc001036c23229941761763e78750c44d6df95f1f598bd57cf6ddbbf7bed01aa8acd43d6062b9a9b8a74f6fc6884eaf0f6) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 -storage - (Some 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0f33ae9a02495781152d75855185e0eb192b88a30f85f72710d5ed190e1ed0b9069279b96cb20957344e8d58cd810cf20f9d84d97ea05441c8440259082701bc034c3759dcff0e98b91259ce05e10df347b3eeed1a72663fb0117950bd9ce379) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c -storage - (Some 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c3711bd4e94f2a14575b3dabd8673d80d683302a15b0d24dcfbf593f6610dd2930d044b1561b007e2ea0631a6589e8afb1d0b40842c2ce80fb6eab8d5c91e9fd4f851f350f4e182b96516acba6a809a3a1eeb8a15729edc92b03b1fcc12d69deb0f) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 -storage - (Some 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710d3658058c31ac8b988131c738a38db0e86dd467f04aae4336b75c8c0e5811e1db5890648af1ac8babc1432324ed28bb0954df14e1b66d36379070441e1d2ec4b29497fd94de7944cc170e96b9d899063fba25e4a0171af84385ef7af47ff8f2) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 -storage - (Some 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec74298191ac2fb2d6688e4103baaaef0c893c604402489c73e1fda888fd47c68ff75e3ddf9ee91edb6e7f63af69e36120916cd16e8fa8605097236a7bbf6d16166aaa3d5c8d7b79e806cc6c7581b2f64fa3fb2255623097beb04753bd0d87a355a56b4) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 -storage - (Some 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0e29d6aa4cd9cd5d9b19c18a3b76dd7dfb4603bd28dbdcd013bbb11239556965d91cee23ed3e8b0b1649dcce6a1b2572079f467f12b9d4fcc59ba60aa0b1eae7745c7fc6bd2c62651310166a182698c0b3b3812e9bcfd8d58a37cc53fd031b93) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/neg_bls12_381_g2.tz on storage None and input 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 -storage - (Some 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a752057df09f6b21e00af755abaac2d76a5ac0fe7cbaa41a59df442fdb1bb72a45be1a62011ade8a4fdcc6cff0d82e3b2e7e11c86ec76b71bf216be737be1bf2b757e4b06165f62ada1cf7d12211c60c42df8d58fecfa784ac190d63bcf57970c404) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- store.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- store.out deleted file mode 100644 index 4c3daa3f6251..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- g2- store.out +++ /dev/null @@ -1,108 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801 -storage - (Some 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -storage - (Some 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156 -storage - (Some 0x048e66c003cb07b01854c4e80e9b98d54bc9ed9a47193ae67676629a6edf46de3b8c46581bfa87764bd637d550a172f6167ceebaa1c1ea190460215c6e154e1226915289185cf04612cef778ebfe42fed44f853011b96c19b8a2cf350168729904e4105e5754ea825e0a601b9c5c60b710fd602ffec940d64d8e2f1e322cb82d89cc810d20493acbee4b17134cc17bbf0355d9302cff8d6bafec975a002475f21e1462a3012a3c63ec2ea920ed5bf3f8904f13b25aad41b0006923bd219d1156) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327 -storage - (Some 0x0279884628439bc4921371297859280eabd9d6c0e53cad71c8f8934739ba50d79ddd1544843235aba1a26a36bfb2ced515b40eb2039356276eee81389605b8ae6c904f8a27e885c4d159ae033471da9c141eba99ee5efad947dbfa999af6cfd10e89f82bebc80ff26cdb42a43ce189cd850aa9ee907011b14a3e441f1579b344ca548392c5ef1c0a0dec0c37685434d605616919129aebc3bcf44d3c0c99917259da7fba1dd439c1277ae9867389838f75b9b54e608b39ef13dd1e1f6f34d327) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca -storage - (Some 0x0664d0fddc05400c4fab60bef6dcd339ae3f99bcba072227f08d1c283f51397c8ac042fcb31dd0d52ee3986f7e9eb2eb024fdce315613dfa85c3e7cccdeee2c8536e373f1ed97451f49d1bfbb10bf074bd3e5bdea86f4a1d9cef681520476eb8011f91cd640137e50858031b17fd804186b02ecced72943a70f03aa0acfe8ff719cce17bfe61281a1f602f16d815a94f09b2d474cc03bf3959d6f0b0707dd819682c2dcf1868847cd38822958836f514de23039d1b2b9345c648c6883f33c1ca) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5 -storage - (Some 0x021e2fdfb66974000c5d51f648aceb27115721c2d1de3678929a17435e8eb039e0d8f89d4d093a700d100a8c9a01934c197a4e20085a20e451e22f46979eda8e5b7061280cb58e157e3f0a5073b6656c0574b47b5e0410574a3b452c6e447ccd069e5ea022fe4477e3d1a0d977b22a9cdc334696fc1e8c2d72eb8f252cb2e1bc153ded2b3555796173bc3d2b27cdb8af19f0db2807565282e9a5693dce3f680084e1598f5ac7baeff955132509af4b99516829f885b96475450803977b14b9b5) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732 -storage - (Some 0x015c946c13b84387740cf5819727445ee94c61f228c340efe76a8cf1b8017447a6ace3df4b7e75a45a05f84bfa6b8e3a027c66ee9b741edf50726225783b632f976d1013edef14c60189217e297bb5020cd6c0412a4a436b189f1233e37a5eba0acd635037368f1935ee3230f1c5cbec4b4bc2e1e3ff1b98565ae587e892256b1819864544a1f6a885b072a7327e9db90a638d10badf925882d7a55d3b24ab1b612b142b16860426ae1e78d2f0cfe830d6f8111196e199c009ed86af4262c732) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c -storage - (Some 0x185cddf00204fa60aa0d2d31a7f6e72282bd818d99b2592caf7f8bf7aecdc744edb257e30aec8d8d784fdec3429b4dd40c311f3decd4f1fec6d1bfc2d5d0a521f3969a3633b8834b4f145d8ef4995704339c31df383192f5968ebe313b421c370843c35546dea1249740ea2fcf739f6f3174aa29e66035c3719cdc3fe8de63171a60ea9d014c1d15b3cd59a76174af8e0ec08dbe0c97d6e36062d1ed24abd7df1283fa901202595a508418367616bc053321ea8c12776d4f7edf33ed2961bf9c) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9 -storage - (Some 0x0d842634253f976abc6b2f8717b67f07a04654495973639815bf7c4f8fe9ef66fb72737ece8efb14185f92c7d64696d318509f5e9d5016313639090c92ea510f416cd36737dd35f3a2ac5cb28fbbb81eceaf82eaef2c5a2bcd0a699d2f600d710ccab9e4ad4e3a0eb29a75ef0aa81f267c09771d033a647c30797614e858e44243536f9a266253740e3dbcdcdb1281f010ac32d557c97964138b3772252e7e12b1e2b3875ea6997a9b19c40a3cd85d1ddef1da1a113ce507767910850b7fb1b9) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7 -storage - (Some 0x0d1078cb857c9220d0767d2359193a6ecac1f925f6104b076daf32da2cb557b8674fa40d849f2be08b713eb6c42a2fff094506665ae13319746c7602208d7d57aec06a06c4955872cc172f79bc81a0a2f35721678b744765ae9f6b061ec7429800e64eef0c195db63adffd0752831911603726fb2c46f2e4dea0fe248db1804040b2116cc39d18097f0861c9edf693de0318176434767463a35fb0e4e1e502338eae73cd5504a5f89fd8b77191b6b671f955dcf53568fb8a7e2e2785caa553f7) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18 -storage - (Some 0x04b3ce0ec841968d60e14eadbd8f26db9409bde0465611d10c81ce13c01e7c8ce8859e836c9d481e672af7e1abb5fb0401b2d53814b8df9a7c1f6d77ba0626f3f1e5d301f5138a734b56de63596c49af4664151e3801e19b0618fce9c8d10d3a0bd73b3feca6193cb001e62c07d4cf59693147c7caa935ef5375218ebd5b8cbe458f11dac41574f4a3b5233195e485391261cb6b26c6119d858001aba299c1eff01acbbe3658b05a5420bc36de8a5d636af87ed01584272a2fc733ac02fc8f18) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/store_bls12_381_g2.tz on storage None and input 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7 -storage - (Some 0x068737d03f75944a6de3af8006cc46deabba7c08bd1c500094ead2c446b18a04093685cace99d6c7ddd2857455432193041bc6fd71097603e7a410cb79b338bd078a2ac96574afff4b84f205e08bf84c0eca52fe4fe7bd95602e7dd80d90a7521483214ace5e068f53c5fc0b8074427ca378ceca4f6ab8e02300f7853f86b0660449fee3d2c9b022f32f0f27d1c47c2d0838a322ce0e2778df346ff82758f57f7fc6ea1efd5a38a26f5fb08f30a4b3449153012f09cf53e6ac9b430a868ee6a7) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check empty.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check empty.out deleted file mode 100644 index 88e8d6786aee..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check empty.out +++ /dev/null @@ -1,9 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{}' -storage - (Some True) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(neg- pos).out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(neg- pos).out deleted file mode 100644 index 83312b878c13..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(neg- pos).out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb114d1d6855d545a8aa7d76c8cf2e21f267816aef1db507c96655b9d5caac42364e6f38ba0ecb751bad54dcd6b939c2ca 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d710ea71fe470a949a162b6eb7c208ae39ea757db9b95ce97497b99bf9f804f54f7792fbb5560d4fb7bb17ab3640dc4700 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500d4843f1486ebcfbcb9f7d628119b20e9079757dec1999c5487228e345190d1454f28d3a36d781964279de5e9fedcd24 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30d47802cbe19afdc9478272cd0160d92fc58b6ca4327e3aca5cfdfc68af3d8466bacb258b053d4281edb6d329a4cab02 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907706c1045e73c0f9e3b4af1b27a73feccafec4c8d252cf5019cd524e150bea2b71b74c064c9a2884024273e3dd5152ced7 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c285702090561b8033ad1b744ba6220f0a6c4bce2819bff957663db716b7e569a3df43008aa7eebfeb162bf42f4bc6f9990ed22 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da168ecb7ab4922d346c5cb3cf166d436ef6064fa0e8c60bc1af09f10a2106dd26fd17ef66367418ee64022cac1a577dc6 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620ba1fca4afa765a2780fb147aa13b6d7b18affcd22b4f5d2e75af94222adbda30add63ed4593dcbabcd835ea311f3069 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe354500041b1c97654caa094d820fb46b874d2ca25a3e44c99fbbe45ba0f5afad6982a1f589c528d857167b9ebb2e6b42de8f4b 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280ecf7b78dda0ca1625fbfd9cada5351ba3bd300c4f3643cc0d51bf1289c00256f35905f46c6e6e96857169d3f2b8d72f 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf10a822dc5de36b9396424657f0aa07601c5fc613dd00d7b12d9efeb2619d10fdd40c856fb23450ba4000ef73f1f3a5b0 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- neg).out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- neg).out deleted file mode 100644 index f1399c0d1dd7..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- neg).out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb813fa4d4a0ad8b1ce186ed5061789213d993923066dddaf1040bc3ff59f825c78df74f2d75467e25e0f55f8a00fa030ed0d1b3cc2c7027888be51d9ef691d77bcb679afda66c73f17f9ee3837a55024f78c71363275a75d75d86bab79f74782aa}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d904c892a52f7e4019610602d25200f8abc6d63b92a41e277858fdebde92b158045788a9721ebc3281749cb31a61b37cb10fb1f9796f2da579d6d98a2586f9dfb54c6eb3ef431d4dd13a95148bcf9da43be5e9c6c5c2358096b912d12c9c99b2de}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae47000061a18b3c1f7df46d06cc5028122f643d2597e3eac79531ff7900340df197e5f275958f4e3f32f9b6eb6e12f1fd7554504ecf2c868411032de16f54899cb4f00be27d3a1c34cbf4d774a539eca119233abc7d699bb9b57f4937ea4be707c7064}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d53097c2f7229e4a233d710de9342964f4c2212e4254bb0ea247123fa770a0c590f01947724608215615a9bc7053450e5800b30bd7bee89ae787756f49f163768ca9cec91b66da79fe324497af657d2434f42a38ed6ea27ea02d49541dc96c10b5b}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400ae8267265fec8d3bc9881aef2a50c6314ada633a748ff1fe4f50c115ac27e61b3f08a06138d4475a93f2f7596cc03ad00c7afd9d32055b0aa61a56ba94801d6d6e0f58743a2db627a3830fefb6003bfc4ea2b17dbf127f9a12ada5ea3a93bd1}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa52104bb1a188a359f1b3ef4b4c4173cd436268b048c2f6a8518a801c996de02891b4195d8bc28a6ab9c8977d19f3496fea16051fa21d3ddf3b30180a33963082865a4e09daae932d59eb966d09aeadc33724c5e17f2f396bda4e373c3329c34d49}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c111608110afbebdf04c1b030a2726132bc723bfe3946e00fcbab3d503b32d3f8be2565704347b52ffac5d2d95701238c1206ae177310b7f5e46f71bdb596153753366abc6ec100acb9e30708abeaa5eafd1356157082e9327d146cb42121fea604f359}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce181a2de2aa5d34e068002517d77c5d882ad965fa9857b8b21220ff0b61e8b1e2eccf7fb364f7348759af46e771b592780ef5b6782d2ca8644b36e422b92b4c9431952936228d532fb984905efc871b3eb68904869a4f525a9e73a3df577dc535}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c2478164a61644f8fe7544935ead55e43f8274e193a1a3bc97eae15e861d1918e5e3f9145949233d617ad76598fb3c396912f102cc36be4d1f2361bc00187301efac15a7168ae334c40595f0d6e50e540ceafd9aab613571452f6c6902311cec502b8}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce69006f59f72ae1bd4b7b12f6eb03b202c86a1923243cd9fe36bf93054ac242eeb2ce28cfd793022d1c2825626c66bf23c7f05b745411343699455f40f0bd449b956109552cf1af704a3cbf79442e76601c418df5cb047ab9f7e99559e01260ddcd6}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0feecaff571f244f2e07dcf17d5433b594792676aa63cd4a85ea213c35a74af2ef40f27981896eedce365dec4c43504211d4dc6970368ad273601d4a60b2af556bbce2d8d9ff5eab730ff179a2082595d0bbec9d04e26d878e5eed2631309a9f}' -storage - (Some False) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- pos).out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- pos).out deleted file mode 100644 index 98d925d1c287..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- pairing_check(pos- pos).out +++ /dev/null @@ -1,1296 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x17f1d3a73197d7942695638c4fa9ac0fc3688c4f9774b905a14e3a3f171bac586c55e83ff97a1aeffb3af00adb22c6bb08b3f481e3aaa0f1a09e30ed741d8ae4fcf5e095d5d00af600db18cb2c04b3edd03cc744a2888ae40caa232946c5e7e1 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1261406f7867f145efcfbf91a156d0f97fd489fbc6fc739d1006947ea0407801ddfbf451d5e6cd8c00540fa63afce7d709169febf275520034f038fe8142fe9d7a01cdcb3a28294acf7736a6feac00d4a71904495b46b047fee754c9bf2363ab 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x076d3b38b48759b0c38e4c49204f1b74b625f98257387308319636aaf01206aab51a37fa3c39080f25e333accff821500cb8cdf8f111299e7f7c2a53c231fac8d3fdd607076b78fa1ebea9bdb197e90fc9b972c47a7c7e69778521a16011dd87 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x05787fa85a0fee21b15083360acd358eb814743fd7d7e2bb961728c8896024d69c5bf517032f1df299a5ca43507a29e30cb991bd7b6636bdb6a3808973359f44681e94bab05d2f12c160f2da6bbd1dddb2ff4da601002bd79b2392cd65b2ffa9 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0338b37a92607a45711425e7ef58cdd202803fdc40f1ebaa3ff49ee7a0b7da9e33e700a0d737416257daa0c1baf8907713400d8bc5beecb6966c8c8e9c0bc00c65b282b2a0b5c2a599de848beac6cab2675ff9b2172b7bfd778b1c22aeacdbd4 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x15f3268289babb75d5dd0a4163ba96c5b564daa3e50b0b0aa6d7461114f62e1420fc38f832341811c7dcdda21c28570210fbb032364514e30661459552a4e81a81f5af855e0eaee3f5c5544a5c7301f416018112b2a29d40770a4390666ebd89 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x06c22184e04091e42352a14652a3672b9b5a46d8383f7e905e45065ed8ed2ed1b8d7f4691934ef8d1fd0551d76ac56da0372466f84edb965debef3e72cde69686e70fbe40abf06fdb826e196d5aa18fd219410987adfe71155fcd353e5a82ce5 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1112dab3a6686a4414b3b787c6ab334dcc779d9d7c016e03e3b33dc884a4d4d88b4ea788694219395c77b3e753213a620e5f154589d880f7d30bf66e9937f5ffb2ec4bb7d0d01cec7fd5d95ed403388113ce9c116bc02344fd26ca15cee07a42 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x148fbde315967a1372f1ec37e8d2c8060ee8f5bc2a46c7dc7524e7754354dcfd317bfff62b8e774e9ef7f7fbbe35450015e5f552d4333c90fd999801d7c45faac21d0d4029e556db0b8fdcf14947738229223ad5d8fce9841b43d194bd211b60 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x0c72c61e5a186398ec4683ff2df510f74570c02f66e4d5d47a735f7655e1a7d4a9b7436368d37133aab44cbbf5f001280b3196715bdf1c84251faa1995a677bbc0ba1b78a44ecef359df138e6cf0f3cd2b52fa0a44e59169348d962c0d46d37c 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x166f76ccdba2865ca5e3cfb6dfa3885edae19b5a0d749c8e94ad0deeb33a5149b1e7325f36bd9708cf7df5d1762a2e2f12fd8534db56b1f90e7b135fe82c8351d85af2f8e8b2d5ca395572965c596169fd5c6824ac1c2e983ab9645d4855a3d915387f450a01a680ea15a4e3f14ab42b9da10ff24f66eb470e32e6c263ff9e1fc723568c9297cd7e45624ce59e4c2dfa0a4f1870ca52412074421d90bc51cd2218089795b067c4ee2c9bbe15271351e838c23938ef1e7f6900ec2ed36365f7cd}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0423dd6f6dda9ba5209c9ef7f5aa04fa7d779f54b9da16bdff836ce906f09992f45539671c033314a7d41a3ce6c13dca0ab9812e89f6783b62a92ac2c87513dc101e0e2d03488221f48b5bea319d7156b3826aaa46831148ef618fa16ae4700013e6f936778807537aaee2b3c228b693921dcd46470bbf9f6fa0cf60179777c4f752a709cd60d0644b481ed0e028556615141f21d13ed6676d04b26da9805dd6a64f77e330385371efe67f022c9f63f072e42964f5b8a80b26805b418f833a47}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x14e7c39d87b5524990a5c1498f8835f916fff76c4235d0c90c2a83ee5fadcfa0da3e9abed31596a82ac20245f5fd6c42050a789aa6b62b09d01fbc0a1c7f72e1af1f40f0905cea56fc7e6612224164fc66dbd1329c565d829d3676a616437d531084e2780f9b4466740ac92300b55d8b4264675fa7d4289af60cd829eca49d151d1788da50d1ea9e5f6338facbaec52b0ed0546e4af63821d3c4b3172d14440cc78ab9ce85dd72dc42e757aa9edeb2d4dc087127c72c15fce569be23693e9f50}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x00e076d4f8fb121bbad0cf0aabccc381cd6af57ed52a084d6de8839244c8fd41c9e9e755bd5085e623cd1312b9eaa2e10b9ba2a34a6d627241e1bf0fd5bf16a9d80b92b079d7a7f540fc7229fd4ed753edb7e1d559a908dc9c614c6b445ce3400f18eb77d3811dc68e83260750a6a0744fc9a5514c3c139f823bc68f9bee77c26abb75f89dc6bb8a10bfd08a6933a6fe19396210665f90e9a0ba024a9a03ab008d9655fdafe2375cecf8a1a1fb50f26459c1d4e6d562d80618d425a15c566eda}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x08ece632050f4beef7be5f050d2d0dbbc80cf77dab7aa74931566cae5edcf551d4f49b9dc153f6f91bfcc5921f66e8e70fc99ecb955eae4bc78c8e498ead8d1bfd8e27796173ebf47e7751e62471ccafd0c178a1998be576c5155e8631befa5209b56048b0dc8ca8972c5c6a01d7df94020e9b3c308e6a6ddcb0b60788d0cd926a92a272eec99545f16782e60cb63ac103fbf2481c42075f1b039d82ad1b2a510a2941aa44f1e5657b9a6597480332ecf9e61e7f821a94256bc7c3ccd63c5d62}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x109a07058b74f8ac430d3971db89e3c157ba5f767b7ad5c1d8997d4f5d9b8a83869c7769283e4393b60252ce2752d1330e2d6ce8ff93cc432ad2e26fa09f86c35bffaf416ed9b7ac4734329d38930ae96310bfe466eab1d4bb7a59bd7c11160808f615fe5a7b24ea1a793555108f3a9b663e04a4e3b9678216f59fccfdf2d0beae68b84981593a2ce0a7fedc73eda3fd028e0132439b77288d6611a10bf8766ca8088a8446cb2fb85e84e7fb0bb3e2ce093b7d157ed6eb9305ddde0159fab752}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x0eb5349b1cc220b50c42ea66f08c2bc59b2bc4810cb8025883f980ac26a0c4d263e6ce53b17f6c5e81a621a329fb306c144974fea8b32f5074e2922a6652236548eba95a93f51f718acfb45c6009b6ce7821ecef3f5591c7d2a08f8b827b0fce01e6e4078f22b1b9e31b829e6bcf4f4f399de58a5b2d5a0d550fd39594c8444131dc804b4c5ccb78604fb9188e4a18330b0b5b720c533e35ffe4c3938a20604332e2224ed0f7bf8fadac4241fa29dae56822fb781704ada51b8b5c20a881e576}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x1686dfdabbf42256245bcd46e879b83ff1cadc1e98fab4483166f4e971de8ec66190669601ccc37817336827b5c7363510a5f6dce3d7f23cf8f7b8d73557814db44b2331b80820810a8e68c6297924735b3914d93e5a6fb855f43daf455c247803b6b085e9efff4601e5bce0e507b4b0165e116ab7bb9411514870cf652297e48d666b6c7d7de85243a5704c3c69197c09d44e7e54adf4642f5ba62f132cb2160a05e2d6c038d2660823645011702774450149eb5a3fad08f36edcee313aa7f3}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x18d844fded7a6bf849a2b75817a3b5c0e025c76c0743a18e9ce33e94e4bc2ad2d3ccb0b01c439df88953e70a3bcd06710126a5494220db0746a16c8300062ca151670be555ae2a68983a47768a494cf5a1141d211b3b6e6577ced1752a8ce690130b72778b6411e299ec3906082b8050c2e5194125e52f536e007df4d2820af73c1f028581312e3d37a8d939940d6e2c1449cca9263c7d05f52798aa6f01f38153e1f8b5d88e0e1b9b393e5e0f4af46005cca34e69a8608120a961fed9f1cdd5}' -storage - (Some False) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x042efbd6b57af4235a6344a3f2130041815a4fbb44839451667255d958e3e8ba7a1d06fad83af056cf839b77470015bf0958ef0ddb9c7b06b4d9615e52a1a5774817857116843b0e3991d3ee9513e5264a9f7a8eff1faf4579fe108c0e0c04fb 0x04a2dd29ddd4bafbeb5b7c26cf77463d4b6d0e42a7a3ceb1ee4691671033816ad592171e19d648ab899eca7da5e77e7c0089346cf8c7ecddf517f085525bd2f5f75838cc7aaaba59f478a3ce3aa4ca96e1e9ad84b09e0495c614eaa44b6c58cb0a1246eae260c24b1d13cac4c5f77921cffe250e49214574e146b164c109ab312f6b0d852fca9111ebc8a213b3bc5a69082c3580c9495bc7d7bb8a6be298fd81f8ba68ac1985b413f420e12754a8d08e4df01361ac7192782ba012d9cecf100c}' -storage - (Some False) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- signature_aggregation.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- signature_aggregation.out deleted file mode 100644 index 19bd514ce8a1..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- signature_aggregation.out +++ /dev/null @@ -1,180 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x19d8a1f79d761f07f5849ed60c4d8372c271ebc3b8731e888b4fd3babc15d716e64f3df671f6e9f2a1726ab29431afbf0f1de63aadf3dcc954fd5b58bda50fa8f80655aae55eb1423a97aef6e16cd7d320871359764581e6abfa735aeeda45b6 0x1988b3f37c78bf39ad0000125cdd9de7b5b774b5221d137b9dbe24b7b69f0970feab7aa52e59087b0a427de9bb6deee2190a9857b2ed4c6dcd7e5c18af6a5170ed1d6046cac81c58a6d2ade394b829ff9b8e02580c975307fa744d0747c6e68208975d9efe381be5cd300b76b887d93dba7a1f144f2c7d9714d8a0e4749519a7d4d403d12e88a4aa83859d1025b3b68c152e565a57caea54be81e13f77b4ad73b88d3e5ebe7dd227d6f3c4aa678895b73f15b30407e13732ac60c74b81de9b6e; Pair 0x10463b3743defc3aee6d6596906938450a429285990ef50b41df63889c42bdc5f1c830cd403506db9df9f1254d3f2b1f1043260bd4122e695546b10d07b5e517c0d0e8f5f0c0de13683a4ca42f6001aaae072fb3d529a8792966f2e0d5e45301 0x13e02b6052719f607dacd3a088274f65596bd0d09920b61ab5da61bbdc7f5049334cf11213945d57e5ac7d055d042b7e024aa2b2f08f0a91260805272dc51051c6e47ad4fa403b02b4510b647ae3d1770bac0326a805bbefd48056c8c121bdb80606c4a02ea734cc32acd2b02bc28b99cb3e287e85a763af267492ab572e99ab3f370d275cec1da1aaa9075ff05f79be0ce5d527727d6e118cc9cdc6da2e351aadfd9baa8cbdd3a76d429a695160d12c923ac9cc3baca289e193548608b82801}' -storage - (Some True) -emitted operations - -big_map diff - - - -./octez-client --mode mockup run script michelson_test_scripts/opcodes/pairing_check.tz on storage None and input '{Pair 0x1273992fd0773410fcadbb55a6914c32c2314d03b4cd0b3da699e0c7b74bab001b4311fdd1bb58630b43b80be3974ca90282f633318822c082c93580febfd5421acd7ce3b0b38fe148c114a0c42ffd6faafb8ab0cff43d6471fc6ff222be6373 0x00ff54c7a2f6b5af235a704dafb1c2e166bdf67c2c6a4e54a9af84349b8676bcb0b1cc1f56f621af67921bbb82fa9806155d6024e64f6d5163ece546259169d2b054acfddfa45a8502b66ecf8582f11b23472b793a84e86599887de4f42cf8360c63251d615a4e7efee27db36d118b5761fe754c3ed3f5439ec6ec3f620378ff15d659ab0f563246cfd023b665daa3f80825788dd115e716fda26f9d55297d720b7bed0f935b254a9e99e0d3d0856421bf0ac3b1ff2bce61f0cdafa0139a7465; Pair 0x0e652b8a10100237ef90db2efe6e3aba6023659ef22d170f55871436fda45a613199fad02bff8a3dfbe00f5c4b7efe590f9287f0ef8c1458a3863459886cccd53cbb4dcb0e724891f667b30835018c8de3bc049a02105a0a55d36808a0e4b5c7 0x0a4edef9c1ed7f729f520e47730a124fd70662a904ba1074728114d1031e1572c6c886f6b57ec72a6178288c47c335771638533957d540a9d2370f17cc7ed5863bc0b995b8825e0ee1ea1e1e4d00dbae81f14b0bf3611b78c952aacab827a0530f6d4552fa65dd2638b361543f887136a43253d9c66c411697003f7a13c308f5422e1aa0a59c8967acdefd8b6e36ccf30468fb440d82b0630aeb8dca2b5256789a66da69bf91009cbfe6bd221e47aa8ae88dece9764bf3bd999d95d71e4c9899}' -storage - (Some True) -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- test_groth16.out b/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- test_groth16.out deleted file mode 100644 index bc6763804082..000000000000 --- a/tezt/tests/expected/test_contract_bls12_381.ml/Nairobi- Bls12_381 contract primitives- test_groth16.out +++ /dev/null @@ -1,9 +0,0 @@ - -./octez-client --mode mockup run script michelson_test_scripts/mini_scenarios/groth16.tz on storage Unit and input 'Pair (Pair 0xa1bb010000000000000000000000000000000000000000000000000000000000 0x0100000000000000000000000000000000000000000000000000000000000000) (Pair (Pair 0x0a2841423326ab08f5f406409775e43fa0f9a0b97631fa85d2dd9242507d25059e9cf48b8b98f99a0008671423a148ec106d70637056972ef49fb6f62de2e89ba3682b9972292b6bb4e6f53799a75d2f8001ccfde280d8ac05fc209352236cbd 0x0fced939fb1ad733f99669f50a383ef632f6d41dfbde434a6715afd5c7dfbb7bc5835e058ad8b590c7b38dd137d0bd0f0e1540f1b45d8aa626c360e2ea484a116243f7c802034de915db6b18d5303946f676e423cbd6046d37a82208d500625a11c7250ccb953a7ee49d704ad14de4b727733cff7cf06875d8b6444f3c0a8cbf0bd980e539c74bd5b37bb15fe816f23407d269193105fda71adf35fae9309d9d46729fcd4685699097a86f0460a2bc8b16293940cabfdcfe0f27e4107e74e90c) 0x0a1fb5a144ca3bdfe4ad0f183cf71dd7fdd28cbef4fcd47b5b419f65186703f62ecaaa1255fa21a6ebdd917ab1f9bd9707de7066865e2ff3875e22088619125a0d4088a622ab42224425ef89a5a149ce2db9c8292b62c7e7aaa7e87f3535304b)' -storage - Unit -emitted operations - -big_map diff - - diff --git a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Nairobi- Ticket updates in receipt.out b/tezt/tests/expected/ticket_receipt_and_rpc.ml/Nairobi- Ticket updates in receipt.out deleted file mode 100644 index ff6690df9346..000000000000 --- a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Nairobi- Ticket updates in receipt.out +++ /dev/null @@ -1,153 +0,0 @@ - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '(Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]")' -Node is bootstrapped. -Estimated gas: 7901.227 units (will add 100 for safety) -Estimated storage: 475 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.001139 - Expected counter: 1 - Gas limit: 8002 - Storage limit: 495 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.001139 - payload fees(the block proposer) ....... +ꜩ0.001139 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]") - This transaction was successfully applied - Updated storage: - { Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "red" 1) ; - Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "green" 1) ; - Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "green" 1) } - Storage size: 525 bytes - Paid storage size diff: 325 bytes - Consumed gas: 3194.103 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.08125 - storage fees ........................... +ꜩ0.08125 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "red" - Account updates: - [CONTRACT_HASH] ... +1 - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "green" - Account updates: - [CONTRACT_HASH] ... +2 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair (Pair (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1)) - (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) - 0x0192ce5ac8f542c49e64c7b6c73c445515ddc20f9400) - This transaction was successfully applied - Updated storage: - (Some (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) - Storage size: 169 bytes - Paid storage size diff: 108 bytes - Consumed gas: 2818.488 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.027 - storage fees ........................... +ꜩ0.027 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "blue" - Account updates: - [CONTRACT_HASH] ... +1 - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1)) - This transaction was successfully applied - Updated storage: - (Some (Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "blue" 1))) - Storage size: 88 bytes - Paid storage size diff: 42 bytes - Consumed gas: 1889.850 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0105 - storage fees ........................... +ꜩ0.0105 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "blue" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"red"' -1 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"green"' -2 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"blue"' -0 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"blue"' -1 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"blue"' -1 - -./octez-client --mode mockup rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/all_ticket_balances' -[ { "ticketer": "[CONTRACT_HASH]", - "content_type": { "prim": "string" }, "content": { "string": "red" }, - "amount": "1" }, - { "ticketer": "[CONTRACT_HASH]", - "content_type": { "prim": "string" }, "content": { "string": "green" }, - "amount": "2" } ] - -./octez-client --mode mockup get all ticket balances for '[CONTRACT_HASH]' -Ticketer: [CONTRACT_HASH] -Content type: string -Content: "red" -Amount: 1 - -Ticketer: [CONTRACT_HASH] -Content type: string -Content: "green" -Amount: 2 - -./octez-client --mode mockup rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/all_ticket_balances' -[ { "ticketer": "[CONTRACT_HASH]", - "content_type": { "prim": "string" }, "content": { "string": "blue" }, - "amount": "1" } ] - -./octez-client --mode mockup get all ticket balances for '[CONTRACT_HASH]' -Ticketer: [CONTRACT_HASH] -Content type: string -Content: "blue" -Amount: 1 - -./octez-client --mode mockup rpc get '/chains/main/blocks/head/context/contracts/[CONTRACT_HASH]/all_ticket_balances' -[ { "ticketer": "[CONTRACT_HASH]", - "content_type": { "prim": "string" }, "content": { "string": "blue" }, - "amount": "1" } ] - -./octez-client --mode mockup get all ticket balances for '[CONTRACT_HASH]' -Ticketer: [CONTRACT_HASH] -Content type: string -Content: "blue" -Amount: 1 - -./octez-client --mode mockup rpc get '/chains/main/blocks/head/context/contracts/[PUBLIC_KEY_HASH]/all_ticket_balances' -Fatal error: - No service found at this URL - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Create and remove tickets.out b/tezt/tests/expected/tickets.ml/Nairobi- Create and remove tickets.out deleted file mode 100644 index dfe0869ab372..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Create and remove tickets.out +++ /dev/null @@ -1,220 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract add_clear_tickets transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 610.470 units (will add 100 for safety) -Estimated storage: 398 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000443 - Expected counter: 1 - Gas limit: 711 - Storage limit: 418 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000443 - payload fees(the block proposer) ....... +ꜩ0.000443 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ200 - Script: - { parameter (or (pair %add nat string) (unit %clear)) ; - storage (list (ticket string)) ; - code { UNPAIR ; - IF_LEFT - { UNPAIR ; - DIG 2 ; - SWAP ; - DIG 2 ; - TICKET ; - ASSERT_SOME ; - CONS ; - NIL operation ; - PAIR } - { DROP 2 ; NIL (ticket string) ; NIL operation ; PAIR } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 141 bytes - Paid storage size diff: 141 bytes - Consumed gas: 610.436 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.03525 - storage fees ........................... +ꜩ0.03525 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ200 - [CONTRACT_HASH] ... +ꜩ200 - -New contract [CONTRACT_HASH] originated. -Contract memorized as add_clear_tickets. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "A"' -Node is bootstrapped. -Estimated gas: 1752.086 units (will add 100 for safety) -Estimated storage: 105 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000453 - Expected counter: 1 - Gas limit: 1853 - Storage limit: 125 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000453 - payload fees(the block proposer) ....... +ꜩ0.000453 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: add - Parameter: (Pair 1 "A") - This transaction was successfully applied - Updated storage: - { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "A" 1) } - Storage size: 180 bytes - Paid storage size diff: 105 bytes - Consumed gas: 1752.664 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02625 - storage fees ........................... +ꜩ0.02625 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "A" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint clear --arg Unit -Node is bootstrapped. -Estimated gas: 1941.758 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000466 - Expected counter: 2 - Gas limit: 2042 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000466 - payload fees(the block proposer) ....... +ꜩ0.000466 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: clear - This transaction was successfully applied - Updated storage: {} - Storage size: 141 bytes - Consumed gas: 1942.337 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "A" - Account updates: - [CONTRACT_HASH] ... -1 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "B"' -Node is bootstrapped. -Estimated gas: 1752.086 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000453 - Expected counter: 3 - Gas limit: 1853 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000453 - payload fees(the block proposer) ....... +ꜩ0.000453 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: add - Parameter: (Pair 1 "B") - This transaction was successfully applied - Updated storage: - { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } - Storage size: 180 bytes - Consumed gas: 1752.664 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "B" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "C"' -Node is bootstrapped. -Estimated gas: 2434.095 units (will add 100 for safety) -Estimated storage: 105 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000521 - Expected counter: 4 - Gas limit: 2535 - Storage limit: 125 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000521 - payload fees(the block proposer) ....... +ꜩ0.000521 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: add - Parameter: (Pair 1 "C") - This transaction was successfully applied - Updated storage: - { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "C" 1) ; - Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } - Storage size: 219 bytes - Paid storage size diff: 105 bytes - Consumed gas: 2434.673 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02625 - storage fees ........................... +ꜩ0.02625 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "C" - Account updates: - [CONTRACT_HASH] ... +1 - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Minting then sending tickets to smart-contract rollup should succeed wi.out b/tezt/tests/expected/tickets.ml/Nairobi- Minting then sending tickets to smart-contract rollup should succeed wi.out deleted file mode 100644 index d6051495412f..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Minting then sending tickets to smart-contract rollup should succeed wi.out +++ /dev/null @@ -1,55 +0,0 @@ - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[SMART_ROLLUP_HASH]"' -Node is bootstrapped. -Estimated gas: 2784.628 units (will add 100 for safety) -Estimated storage: 132 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000584 - Expected counter: 3 - Gas limit: 2885 - Storage limit: 152 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000584 - payload fees(the block proposer) ....... +ꜩ0.000584 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[SMART_ROLLUP_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 197 bytes - Paid storage size diff: 132 bytes - Consumed gas: 2674.654 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.033 - storage fees ........................... +ꜩ0.033 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [SMART_ROLLUP_HASH] - Parameter: { Pair 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 (Pair "Ticket2" 1) ; - Pair 0x01f6719dc3bd86b5c531d6551553c467a31a54717800 (Pair "Ticket" 1) } - This transaction was successfully applied - Consumed gas: 109.941 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [SMART_ROLLUP_HASH] ... +1 - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket2" - Account updates: - [SMART_ROLLUP_HASH] ... +1 - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Overdrafting ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Nairobi- Overdrafting ticket from implicit accounts must be rejected.out deleted file mode 100644 index d0e4923c0192..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Overdrafting ticket from implicit accounts must be rejected.out +++ /dev/null @@ -1,210 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 2 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup --wait none transfer 2 tickets from bootstrap1 to bootstrap2 with entrypoint default and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 3 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transfer tickets: - Ticket content: "Ticket" - Ticket content type: string - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 2 - Destination: [PUBLIC_KEY_HASH] - From: [PUBLIC_KEY_HASH] - This operation FAILED. - -Error: - Attempted to set negative ticket balance value '-1' for key exprubCTZXvJKqgSzwRfVHM3SJSU8MUFST8FnrYTxTLwn8F9oGyh8P. - -./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) -Estimated storage: 451 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 3 - Gas limit: 721 - Storage limit: 471 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR ; - IF_LEFT - { CONS ; NIL operation ; PAIR } - { SWAP ; - IF_CONS - { DIG 2 ; - CONTRACT %ticket (ticket string) ; - ASSERT_SOME ; - PUSH mutez 0 ; - DIG 2 ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } - { PUSH string "no ticket to send" ; FAILWITH } } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 194 bytes - Paid storage size diff: 194 bytes - Consumed gas: 620.619 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0485 - storage fees ........................... +ꜩ0.0485 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_bag. - -./octez-client --mode mockup --wait none transfer 2 tickets from bootstrap1 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 4 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transfer tickets: - Ticket content: "Ticket" - Ticket content type: string - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 2 - Destination: [CONTRACT_HASH] - Entrypoint: save - From: [PUBLIC_KEY_HASH] - This operation FAILED. - -Error: - Attempted to set negative ticket balance value '-1' for key exprubCTZXvJKqgSzwRfVHM3SJSU8MUFST8FnrYTxTLwn8F9oGyh8P. diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets between originated contracts and implicit accounts.out b/tezt/tests/expected/tickets.ml/Nairobi- Send tickets between originated contracts and implicit accounts.out deleted file mode 100644 index 04f820ec16d8..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets between originated contracts and implicit accounts.out +++ /dev/null @@ -1,387 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) -Estimated storage: 451 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 2 - Gas limit: 721 - Storage limit: 471 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR ; - IF_LEFT - { CONS ; NIL operation ; PAIR } - { SWAP ; - IF_CONS - { DIG 2 ; - CONTRACT %ticket (ticket string) ; - ASSERT_SOME ; - PUSH mutez 0 ; - DIG 2 ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } - { PUSH string "no ticket to send" ; FAILWITH } } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 194 bytes - Paid storage size diff: 194 bytes - Consumed gas: 620.619 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0485 - storage fees ........................... +ꜩ0.0485 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_bag. - -./octez-client --mode mockup --wait none originate contract tickets_blackhole transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 579.805 units (will add 100 for safety) -Estimated storage: 308 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000346 - Expected counter: 3 - Gas limit: 680 - Storage limit: 328 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000346 - payload fees(the block proposer) ....... +ꜩ0.000346 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (ticket %ticket string) ; - storage unit ; - code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 51 bytes - Paid storage size diff: 51 bytes - Consumed gas: 579.772 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01275 - storage fees ........................... +ꜩ0.01275 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_blackhole. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 3' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 4 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 3) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 3)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +3 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -3 - -./octez-client --mode mockup --wait none transfer 2 tickets from bootstrap1 to bootstrap2 with entrypoint default and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 1295.154 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000441 - Expected counter: 5 - Gas limit: 1396 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000441 - payload fees(the block proposer) ....... +ꜩ0.000441 - Transfer tickets: - Ticket content: "Ticket" - Ticket content type: string - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 2 - Destination: [PUBLIC_KEY_HASH] - From: [PUBLIC_KEY_HASH] - This tickets transfer was successfully applied - Paid storage size diff: 66 bytes - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... -2 - [PUBLIC_KEY_HASH] ... +2 - Consumed gas: 1295.088 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup get ticket balance for bootstrap2 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -2 - -./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap2 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 3207.355 units (will add 100 for safety) -Estimated storage: 110 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00063 - Expected counter: 1 - Gas limit: 3308 - Storage limit: 130 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00063 - payload fees(the block proposer) ....... +ꜩ0.00063 - Transfer tickets: - Ticket content: "Ticket" - Ticket content type: string - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 1 - Destination: [CONTRACT_HASH] - Entrypoint: save - From: [PUBLIC_KEY_HASH] - This tickets transfer was successfully applied - Paid storage size diff: 66 bytes - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... -1 - Consumed gas: 1296.551 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: save - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Updated storage: - { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } - Storage size: 238 bytes - Paid storage size diff: 44 bytes - Consumed gas: 1911.415 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.011 - storage fees ........................... +ꜩ0.011 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap2 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 4717.552 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 6 - Gas limit: 4818 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: send - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: {} - Storage size: 194 bytes - Consumed gas: 2864.858 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... -1 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Entrypoint: ticket - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Updated storage: Unit - Storage size: 51 bytes - Consumed gas: 1853.788 - - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -0 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -0 diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with some Tez along.out b/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with some Tez along.out deleted file mode 100644 index b746f178be30..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with some Tez along.out +++ /dev/null @@ -1,115 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send_with_tez transferring 1 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 612.587 units (will add 100 for safety) -Estimated storage: 411 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000455 - Expected counter: 1 - Gas limit: 713 - Storage limit: 431 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000455 - payload fees(the block proposer) ....... +ꜩ0.000455 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ1 - Script: - { parameter address ; - storage unit ; - code { CAR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 1 ; - PUSH nat 1 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 154 bytes - Paid storage size diff: 154 bytes - Consumed gas: 612.554 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0385 - storage fees ........................... +ꜩ0.0385 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send_with_tez. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[PUBLIC_KEY_HASH]"' -Node is bootstrapped. -Estimated gas: 1857.302 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00049 - Expected counter: 2 - Gas limit: 1958 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00049 - payload fees(the block proposer) ....... +ꜩ0.00049 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[PUBLIC_KEY_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 154 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1757.483 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0.000001 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x017c8454eff9ad796cd8baba365d2592ad1b60efb100 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Balance updates: - [CONTRACT_HASH] ... -ꜩ0.000001 - [PUBLIC_KEY_HASH] ... +ꜩ0.000001 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with the wrong type mu.out b/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with the wrong type mu.out deleted file mode 100644 index 4ef9068eabf9..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts with the wrong type mu.out +++ /dev/null @@ -1,195 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract send_ticket_list transferring 1 from bootstrap1 running michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.629 units (will add 100 for safety) -Estimated storage: 402 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000446 - Expected counter: 1 - Gas limit: 715 - Storage limit: 422 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000446 - payload fees(the block proposer) ....... +ꜩ0.000446 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ1 - Script: - { parameter address ; - storage unit ; - code { CAR ; - CONTRACT (list (ticket string)) ; - ASSERT_SOME ; - PUSH mutez 0 ; - NIL (ticket string) ; - PUSH nat 1 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - CONS ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - UNIT ; - SWAP ; - PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 145 bytes - Paid storage size diff: 145 bytes - Consumed gas: 614.596 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.03625 - storage fees ........................... +ꜩ0.03625 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -New contract [CONTRACT_HASH] originated. -Contract memorized as send_ticket_list. - -./octez-client --mode mockup --wait none originate contract tickets_list_blackhole transferring 1 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_list_blackhole_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 579.534 units (will add 100 for safety) -Estimated storage: 299 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000339 - Expected counter: 2 - Gas limit: 680 - Storage limit: 319 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000339 - payload fees(the block proposer) ....... +ꜩ0.000339 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ1 - Script: - { parameter (list (ticket string)) ; - storage unit ; - code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 42 bytes - Paid storage size diff: 42 bytes - Consumed gas: 579.501 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0105 - storage fees ........................... +ꜩ0.0105 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_list_blackhole. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 4064.546 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000711 - Expected counter: 3 - Gas limit: 4165 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000711 - payload fees(the block proposer) ....... +ꜩ0.000711 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Storage size: 145 bytes - Paid storage size diff: 66 bytes - Consumed gas: 2211.797 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: { Pair 0x011213b3979289bef70dc1d1a4fb7574f306bf7f2400 (Pair "Ticket" 1) } - This transaction was successfully applied - Updated storage: Unit - Storage size: 42 bytes - Consumed gas: 1853.844 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[PUBLIC_KEY_HASH]"' -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 4 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[PUBLIC_KEY_HASH]" - This operation FAILED. - -Runtime error in contract [CONTRACT_HASH]: - 01: { parameter address ; - 02: storage unit ; - 03: code { CAR ; - 04: CONTRACT (list (ticket string)) ; - 05: ASSERT_SOME ; - 06: PUSH mutez 0 ; - 07: NIL (ticket string) ; - 08: PUSH nat 1 ; - 09: PUSH string "Ticket" ; - 10: TICKET ; - 11: ASSERT_SOME ; - 12: CONS ; - 13: TRANSFER_TOKENS ; - 14: NIL operation ; - 15: SWAP ; - 16: CONS ; - 17: UNIT ; - 18: SWAP ; - 19: PAIR } } -At line 5 characters 9 to 20, -script reached FAILWITH instruction -with Unit -Fatal error: - transfer simulation failed diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts.out b/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts.out deleted file mode 100644 index d518cd93d434..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets from contracts to implicit accounts.out +++ /dev/null @@ -1,111 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 2 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets in bigmap.out b/tezt/tests/expected/tickets.ml/Nairobi- Send tickets in bigmap.out deleted file mode 100644 index 6a0d080d7f37..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Send tickets in bigmap.out +++ /dev/null @@ -1,296 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract receive_tickets_in_big_map transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/receive_tickets_in_big_map.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 583.088 units (will add 100 for safety) -Estimated storage: 340 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000352 - Expected counter: 1 - Gas limit: 684 - Storage limit: 360 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000352 - payload fees(the block proposer) ....... +ꜩ0.000352 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ200 - Script: - { parameter (big_map int (ticket string)) ; - storage (big_map int (ticket string)) ; - code { CAR ; NIL operation ; PAIR } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 83 bytes - Updated big_maps: - New map(4) of type (big_map int (ticket string)) - Paid storage size diff: 83 bytes - Consumed gas: 583.054 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.02075 - storage fees ........................... +ꜩ0.02075 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ200 - [CONTRACT_HASH] ... +ꜩ200 - -New contract [CONTRACT_HASH] originated. -Contract memorized as receive_tickets_in_big_map. - -./octez-client --mode mockup --wait none originate contract send_tickets_in_big_map transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 675.926 units (will add 100 for safety) -Estimated storage: 577 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000628 - Expected counter: 2 - Gas limit: 776 - Storage limit: 597 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000628 - payload fees(the block proposer) ....... +ꜩ0.000628 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ200 - Script: - { parameter address ; - storage unit ; - code { CAR ; - CONTRACT (big_map int (ticket string)) ; - IF_NONE - { PUSH string "Contract of type `big_map(ticket(string))` not found" ; - FAILWITH } - { EMPTY_BIG_MAP int (ticket string) ; - PUSH int 100 ; - SWAP ; - PAIR ; - LEFT (big_map int (ticket string)) ; - LOOP_LEFT - { UNPAIR ; - SWAP ; - DUP ; - DUG 2 ; - PUSH int 0 ; - COMPARE ; - LT ; - IF { PUSH int 1 ; - DUP 3 ; - SUB ; - SWAP ; - PUSH nat 1 ; - PUSH string "BLUE" ; - TICKET ; - ASSERT_SOME ; - DIG 3 ; - SWAP ; - SOME ; - SWAP ; - UPDATE ; - PAIR ; - LEFT (big_map int (ticket string)) } - { SWAP ; DROP ; RIGHT (pair (big_map int (ticket string)) int) } } ; - SWAP ; - PUSH mutez 0 ; - DIG 2 ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 320 bytes - Paid storage size diff: 320 bytes - Consumed gas: 675.893 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.08 - storage fees ........................... +ꜩ0.08 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - [PUBLIC_KEY_HASH] ... -ꜩ200 - [CONTRACT_HASH] ... +ꜩ200 - -New contract [CONTRACT_HASH] originated. -Contract memorized as send_tickets_in_big_map. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 30 --storage-limit 1000000 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 98835.811 units (will add 100 for safety) -Estimated storage: 10767 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.01019 - Expected counter: 1 - Gas limit: 98936 - Storage limit: 10787 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01019 - payload fees(the block proposer) ....... +ꜩ0.01019 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: Unit - Updated big_maps: - New temp(1) of type (big_map int (ticket string)) - Set temp(1)[22] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[48] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[20] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[67] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[30] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[33] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[42] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[13] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[50] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[84] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[44] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[41] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[4] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[73] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[5] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[28] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[19] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[9] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[86] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[76] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[8] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[97] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[80] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[45] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[87] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[1] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[26] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[38] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[65] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[99] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[69] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[2] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[81] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[82] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[64] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[92] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[90] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[98] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[37] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[66] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[32] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[71] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[51] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[56] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[14] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[12] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[85] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[47] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[74] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[18] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[10] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[35] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[96] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[27] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[77] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[62] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[58] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[25] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[94] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[60] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[7] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[53] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[11] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[17] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[83] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[72] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[6] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[88] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[75] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[3] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[70] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[52] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[95] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[68] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[78] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[23] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[79] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[59] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[100] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[24] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[21] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[49] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[93] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[39] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[63] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[55] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[15] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[16] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[31] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[43] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[29] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[54] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[89] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[36] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[46] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[91] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[61] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[34] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[57] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Set temp(1)[40] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) - Storage size: 320 bytes - Paid storage size diff: 67 bytes - Consumed gas: 49911.017 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01675 - storage fees ........................... +ꜩ0.01675 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: -1 - This transaction was successfully applied - Updated storage: 5 - Updated big_maps: - Clear map(4) - Copy temp(1) to map(5) - Storage size: 10783 bytes - Paid storage size diff: 10700 bytes - Consumed gas: 48925.826 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.675 - storage fees ........................... +ꜩ2.675 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "BLUE" - Account updates: - [CONTRACT_HASH] ... +100 - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket from contract storage to implicit accounts.out b/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket from contract storage to implicit accounts.out deleted file mode 100644 index c84a77b15172..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket from contract storage to implicit accounts.out +++ /dev/null @@ -1,294 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none originate contract tickets_bag_implicit transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 619.638 units (will add 100 for safety) -Estimated storage: 440 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 - Expected counter: 2 - Gas limit: 720 - Storage limit: 460 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR ; - IF_LEFT - { CONS ; NIL operation ; PAIR } - { SWAP ; - IF_CONS - { DIG 2 ; - CONTRACT (ticket string) ; - ASSERT_SOME ; - PUSH mutez 0 ; - DIG 2 ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } - { PUSH string "no ticket to send" ; FAILWITH } } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 183 bytes - Paid storage size diff: 183 bytes - Consumed gas: 619.605 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.04575 - storage fees ........................... +ꜩ0.04575 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_bag_implicit. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 3 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap1 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 3176.844 units (will add 100 for safety) -Estimated storage: 44 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 - Expected counter: 4 - Gas limit: 3277 - Storage limit: 64 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 - Transfer tickets: - Ticket content: "Ticket" - Ticket content type: string - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 1 - Destination: [CONTRACT_HASH] - Entrypoint: save - From: [PUBLIC_KEY_HASH] - This tickets transfer was successfully applied - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... -1 - Consumed gas: 1266.514 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: save - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Updated storage: - { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } - Storage size: 227 bytes - Paid storage size diff: 44 bytes - Consumed gas: 1910.908 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.011 - storage fees ........................... +ꜩ0.011 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -0 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[PUBLIC_KEY_HASH]"' -Node is bootstrapped. -Estimated gas: 2511.684 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000561 - Expected counter: 5 - Gas limit: 2612 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000561 - payload fees(the block proposer) ....... +ꜩ0.000561 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: send - Parameter: "[PUBLIC_KEY_HASH]" - This transaction was successfully applied - Updated storage: {} - Storage size: 183 bytes - Consumed gas: 2411.864 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... -1 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap2 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup get ticket balance for '[CONTRACT_HASH]' with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -0 diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket of wrong type from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket of wrong type from implicit accounts must be rejected.out deleted file mode 100644 index 71f5aabbebfd..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Sending ticket of wrong type from implicit accounts must be rejected.out +++ /dev/null @@ -1,129 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 2 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup --wait none transfer 2 tickets from bootstrap1 to bootstrap2 with entrypoint default and contents 0 and type nat and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -This simulation failed: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0 - Expected counter: 3 - Gas limit: 1040000 - Storage limit: 60000 bytes - Transfer tickets: - Ticket content: 0 - Ticket content type: nat - Ticket ticketer: [CONTRACT_HASH] - Ticket amount: 2 - Destination: [PUBLIC_KEY_HASH] - From: [PUBLIC_KEY_HASH] - This operation FAILED. - -Error: - Attempted to set negative ticket balance value '-2' for key expru2shUeN2Ah7TLWrM937cMzrqkGL4LirEXUQYVZU4YvjdqGrkB2. diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets from storage to smart-contract rollup should succeed wi.out b/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets from storage to smart-contract rollup should succeed wi.out deleted file mode 100644 index c07a08a59f41..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets from storage to smart-contract rollup should succeed wi.out +++ /dev/null @@ -1,111 +0,0 @@ - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint mint -Node is bootstrapped. -Estimated gas: 2222.694 units (will add 100 for safety) -Estimated storage: 221 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 3 - Gas limit: 2323 - Storage limit: 241 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: mint - This transaction was successfully applied - Updated storage: - { Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket2" 1) ; - Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket" 1) } - Storage size: 309 bytes - Paid storage size diff: 221 bytes - Consumed gas: 2222.661 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.05525 - storage fees ........................... +ꜩ0.05525 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket2" - Account updates: - [CONTRACT_HASH] ... +1 - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... +1 - - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[SMART_ROLLUP_HASH]"' -Node is bootstrapped. -Estimated gas: 3142.041 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 4 - Gas limit: 3243 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Entrypoint: send - Parameter: "[SMART_ROLLUP_HASH]" - This transaction was successfully applied - Updated storage: {} - Storage size: 220 bytes - Consumed gas: 3032.033 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket2" - Account updates: - [CONTRACT_HASH] ... -1 - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [CONTRACT_HASH] ... -1 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [SMART_ROLLUP_HASH] - Parameter: { Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket2" 1) ; - Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket" 1) } - This transaction was successfully applied - Consumed gas: 109.941 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket2" - Account updates: - [SMART_ROLLUP_HASH] ... +1 - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [SMART_ROLLUP_HASH] ... +1 - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets to either implicit accounts or originated contracts acc.out b/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets to either implicit accounts or originated contracts acc.out deleted file mode 100644 index ea01aeebfaa8..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Sending tickets to either implicit accounts or originated contracts acc.out +++ /dev/null @@ -1,197 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none originate contract tickets_blackhole transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_blackhole_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 579.805 units (will add 100 for safety) -Estimated storage: 308 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000346 - Expected counter: 2 - Gas limit: 680 - Storage limit: 328 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000346 - payload fees(the block proposer) ....... +ꜩ0.000346 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (ticket %ticket string) ; - storage unit ; - code { CDR ; NIL operation ; PAIR } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 51 bytes - Paid storage size diff: 51 bytes - Consumed gas: 579.772 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01275 - storage fees ........................... +ꜩ0.01275 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_blackhole. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 3 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[CONTRACT_HASH]" 1' -Node is bootstrapped. -Estimated gas: 4064.179 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000715 - Expected counter: 4 - Gas limit: 4165 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000715 - payload fees(the block proposer) ....... +ꜩ0.000715 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[CONTRACT_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 2211.485 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Updated storage: Unit - Storage size: 51 bytes - Consumed gas: 1853.788 - diff --git a/tezt/tests/expected/tickets.ml/Nairobi- Sending zero ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Nairobi- Sending zero ticket from implicit accounts must be rejected.out deleted file mode 100644 index 0f5ff07dc370..000000000000 --- a/tezt/tests/expected/tickets.ml/Nairobi- Sending zero ticket from implicit accounts must be rejected.out +++ /dev/null @@ -1,174 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 -Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) -Estimated storage: 415 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 - Expected counter: 1 - Gas limit: 715 - Storage limit: 435 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (pair address nat) ; - storage unit ; - code { CAR ; - UNPAIR ; - CONTRACT (ticket string) ; - IF_NONE - { PUSH string "Contract not found" ; FAILWITH } - { PUSH mutez 0 ; - DIG 2 ; - PUSH string "Ticket" ; - TICKET ; - ASSERT_SOME ; - TRANSFER_TOKENS ; - PUSH unit Unit ; - NIL operation ; - DIG 2 ; - CONS ; - PAIR } } } - Initial storage: Unit - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 158 bytes - Paid storage size diff: 158 bytes - Consumed gas: 614.348 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0395 - storage fees ........................... +ꜩ0.0395 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_send. - -./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' -Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) -Estimated storage: 66 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 2 - Gas limit: 1959 - Storage limit: 86 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" 1) - This transaction was successfully applied - Updated storage: Unit - Storage size: 158 bytes - Paid storage size diff: 66 bytes - Consumed gas: 1758.998 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0165 - storage fees ........................... +ꜩ0.0165 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [PUBLIC_KEY_HASH] - Parameter: (Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1)) - This transaction was successfully applied - Consumed gas: 100.398 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Ticket" - Account updates: - [PUBLIC_KEY_HASH] ... +1 - - -./octez-client --mode mockup get ticket balance for bootstrap1 with ticketer '[CONTRACT_HASH]' and type string and content '"Ticket"' -1 - -./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) -Estimated storage: 451 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 - Expected counter: 3 - Gas limit: 721 - Storage limit: 471 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter (or (ticket %save string) (address %send)) ; - storage (list (ticket string)) ; - code { UNPAIR ; - IF_LEFT - { CONS ; NIL operation ; PAIR } - { SWAP ; - IF_CONS - { DIG 2 ; - CONTRACT %ticket (ticket string) ; - ASSERT_SOME ; - PUSH mutez 0 ; - DIG 2 ; - TRANSFER_TOKENS ; - NIL operation ; - SWAP ; - CONS ; - PAIR } - { PUSH string "no ticket to send" ; FAILWITH } } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 194 bytes - Paid storage size diff: 194 bytes - Consumed gas: 620.619 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0485 - storage fees ........................... +ꜩ0.0485 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as tickets_bag. - -./octez-client --mode mockup --wait none transfer 0 tickets from bootstrap1 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 -Fatal error: - ticket quantity should not be zero or negative diff --git a/tezt/tests/expected/tx_sc_rollup.ml/Nairobi- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out b/tezt/tests/expected/tx_sc_rollup.ml/Nairobi- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out deleted file mode 100644 index 2c8dd08f98e4..000000000000 --- a/tezt/tests/expected/tx_sc_rollup.ml/Nairobi- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out +++ /dev/null @@ -1,224 +0,0 @@ - -./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1000 --arg 'Pair (Pair "[SMART_ROLLUP_HASH]" "[PUBLIC_KEY_HASH]") (Pair 450 "Hello, Ticket!")' -Node is bootstrapped. -Estimated gas: 2330.278 units (will add 100 for safety) -Estimated storage: 67 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000607 - Expected counter: 3 - Gas limit: 2431 - Storage limit: 87 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000607 - payload fees(the block proposer) ....... +ꜩ0.000607 - Transaction: - Amount: ꜩ0 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: (Pair (Pair "[SMART_ROLLUP_HASH]" "[PUBLIC_KEY_HASH]") - (Pair 450 "Hello, Ticket!")) - This transaction was successfully applied - Updated storage: Unit - Storage size: 205 bytes - Paid storage size diff: 67 bytes - Consumed gas: 2223.251 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01675 - storage fees ........................... +ꜩ0.01675 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [CONTRACT_HASH] - To: [SMART_ROLLUP_HASH] - Parameter: (Pair "[PUBLIC_KEY_HASH]" - (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 450))) - This transaction was successfully applied - Consumed gas: 106.960 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Hello, Ticket!" - Account updates: - [SMART_ROLLUP_HASH] ... +450 - - -./octez-client --wait none send smart rollup message '[SMART_ROLLUP_EXTERNAL_MESSAGES]' from bootstrap2 -Node is bootstrapped. -Estimated gas: 183.878 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000619 - Expected counter: 1 - Gas limit: 284 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000619 - payload fees(the block proposer) ....... +ꜩ0.000619 - Smart rollup messages submission: - This smart rollup messages submission was successfully applied - Consumed gas: 183.812 - -GET http://[HOST]:[PORT]/global/block/head/total_ticks -200 OK -"143000000000" - - -./octez-client --wait none send smart rollup message '[SMART_ROLLUP_EXTERNAL_MESSAGES]' from bootstrap2 -Node is bootstrapped. -Estimated gas: 186.288 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000682 - Expected counter: 2 - Gas limit: 287 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000682 - payload fees(the block proposer) ....... +ꜩ0.000682 - Smart rollup messages submission: - This smart rollup messages submission was successfully applied - Consumed gas: 186.222 - -GET http://[HOST]:[PORT]/global/block/12/total_ticks -200 OK -"341000000000" - - -./octez-client --wait none execute outbox message of smart rollup '[SMART_ROLLUP_HASH]' from bootstrap1 for commitment hash '[SC_ROLLUP_COMMITMENT_HASH]' and output proof '[SMART_ROLLUP_BYTES]' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 6496.897 units (will add 100 for safety) -Estimated storage: 125 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00168 - Expected counter: 8 - Gas limit: 6597 - Storage limit: 145 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00168 - payload fees(the block proposer) ....... +ꜩ0.00168 - Smart rollup output message execution: - Address: [SMART_ROLLUP_HASH] - Cemented commitment: [SC_ROLLUP_COMMITMENT_HASH] - This smart output message execution was successfully applied - Paid storage size diff: 72 bytes - Consumed gas: 5062.777 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.018 - storage fees ........................... +ꜩ0.018 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Hello, Ticket!" - Account updates: - [SMART_ROLLUP_HASH] ... -220 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [SMART_ROLLUP_HASH] - To: [CONTRACT_HASH] - Entrypoint: receive_tickets - Parameter: (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220)) - This transaction was successfully applied - Updated storage: - { Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220) } - Storage size: 175 bytes - Paid storage size diff: 53 bytes - Consumed gas: 1434.087 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01325 - storage fees ........................... +ꜩ0.01325 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Hello, Ticket!" - Account updates: - [CONTRACT_HASH] ... +220 - - -./octez-client --wait none execute outbox message of smart rollup '[SMART_ROLLUP_HASH]' from bootstrap1 for commitment hash '[SC_ROLLUP_COMMITMENT_HASH]' and output proof '[SMART_ROLLUP_BYTES]' --burn-cap 10 -Node is bootstrapped. -Estimated gas: 6045.060 units (will add 100 for safety) -Estimated storage: 52 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.001632 - Expected counter: 9 - Gas limit: 6146 - Storage limit: 72 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.001632 - payload fees(the block proposer) ....... +ꜩ0.001632 - Smart rollup output message execution: - Address: [SMART_ROLLUP_HASH] - Cemented commitment: [SC_ROLLUP_COMMITMENT_HASH] - This smart output message execution was successfully applied - Consumed gas: 4602.684 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Hello, Ticket!" - Account updates: - [SMART_ROLLUP_HASH] ... -40 - Internal operations: - Internal Transaction: - Amount: ꜩ0 - From: [SMART_ROLLUP_HASH] - To: [CONTRACT_HASH] - Entrypoint: receive_tickets - Parameter: (Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 40)) - This transaction was successfully applied - Updated storage: - { Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 40) ; - Pair [MICHELINE_KT1_BYTES] (Pair "Hello, Ticket!" 220) } - Storage size: 227 bytes - Paid storage size diff: 52 bytes - Consumed gas: 1442.310 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.013 - storage fees ........................... +ꜩ0.013 - Ticket updates: - Ticketer: [CONTRACT_HASH] - Content type: string - Content: "Hello, Ticket!" - Account updates: - [CONTRACT_HASH] ... +40 - diff --git a/tezt/tests/expected/views.ml/Nairobi- Run views.out b/tezt/tests/expected/views.ml/Nairobi- Run views.out deleted file mode 100644 index 045cc11dc077..000000000000 --- a/tezt/tests/expected/views.ml/Nairobi- Run views.out +++ /dev/null @@ -1,213 +0,0 @@ - -./octez-client --mode mockup --wait none originate contract view_registers_callers transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/view_registers_callers.tz --init '{}' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 603.691 units (will add 100 for safety) -Estimated storage: 409 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00045 - Expected counter: 1 - Gas limit: 704 - Storage limit: 429 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00045 - payload fees(the block proposer) ....... +ꜩ0.00045 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter unit ; - storage (list address) ; - code { CDR ; SOURCE ; CONS ; NIL operation ; PAIR } ; - view "calls_count" unit nat { CDR ; SIZE } ; - view "last_caller" - unit - (option address) - { CDR ; IF_CONS { DIP { DROP } ; SOME } { NONE address } } } - Initial storage: {} - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 152 bytes - Paid storage size diff: 152 bytes - Consumed gas: 603.657 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.038 - storage fees ........................... +ꜩ0.038 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as view_registers_callers. - -./octez-client --mode mockup --wait none originate contract view_check_caller transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/view_check_caller.tz --init None --burn-cap 1 -Node is bootstrapped. -Estimated gas: 629.030 units (will add 100 for safety) -Estimated storage: 465 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000508 - Expected counter: 2 - Gas limit: 730 - Storage limit: 485 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000508 - payload fees(the block proposer) ....... +ꜩ0.000508 - Origination: - From: [PUBLIC_KEY_HASH] - Credit: ꜩ0 - Script: - { parameter address ; - storage (option address) ; - code { CAR ; - DUP ; - UNIT ; - VIEW "calls_count" nat ; - IF_NONE { UNIT ; FAILWITH } {} ; - DIP { UNIT ; VIEW "last_caller" (option address) } ; - PUSH nat 0 ; - IFCMPEQ - { IF_NONE { UNIT ; FAILWITH } { IF_NONE {} { UNIT ; FAILWITH } } ; - NONE address } - { IF_NONE { UNIT ; FAILWITH } { IF_NONE { UNIT ; FAILWITH } {} } ; - SOME } ; - NIL operation ; - PAIR } } - Initial storage: None - No delegate for this contract - This origination was successfully applied - Originated contracts: - [CONTRACT_HASH] - Storage size: 208 bytes - Paid storage size diff: 208 bytes - Consumed gas: 628.996 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.052 - storage fees ........................... +ꜩ0.052 - [PUBLIC_KEY_HASH] ... -ꜩ0.06425 - storage fees ........................... +ꜩ0.06425 - -New contract [CONTRACT_HASH] originated. -Contract memorized as view_check_caller. - -./octez-client --mode mockup --wait none transfer 1 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 3584.052 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000665 - Expected counter: 3 - Gas limit: 3685 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000665 - payload fees(the block proposer) ....... +ꜩ0.000665 - Transaction: - Amount: ꜩ1 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: None - Storage size: 208 bytes - Consumed gas: 3584.631 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - - -./octez-client --mode mockup --wait none transfer 1 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 -Node is bootstrapped. -Estimated gas: 1285.966 units (will add 100 for safety) -Estimated storage: 27 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000389 - Expected counter: 4 - Gas limit: 1386 - Storage limit: 47 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000389 - payload fees(the block proposer) ....... +ꜩ0.000389 - Transaction: - Amount: ꜩ1 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - This transaction was successfully applied - Updated storage: { 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78 } - Storage size: 179 bytes - Paid storage size diff: 27 bytes - Consumed gas: 1286.587 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00675 - storage fees ........................... +ꜩ0.00675 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - - -./octez-client --mode mockup --wait none transfer 1 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' -Node is bootstrapped. -Estimated gas: 3587.684 units (will add 100 for safety) -Estimated storage: 27 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000665 - Expected counter: 5 - Gas limit: 3688 - Storage limit: 47 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000665 - payload fees(the block proposer) ....... +ꜩ0.000665 - Transaction: - Amount: ꜩ1 - From: [PUBLIC_KEY_HASH] - To: [CONTRACT_HASH] - Parameter: "[CONTRACT_HASH]" - This transaction was successfully applied - Updated storage: (Some 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) - Storage size: 235 bytes - Paid storage size diff: 27 bytes - Consumed gas: 3588.263 - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00675 - storage fees ........................... +ꜩ0.00675 - [PUBLIC_KEY_HASH] ... -ꜩ1 - [CONTRACT_HASH] ... +ꜩ1 - -- GitLab